Commit Graph

875 Commits (main)
 

Author SHA1 Message Date
Jorge Bucaran 37a6cd28e3
refactor: rename help,version to --{help,version} 5 years ago
Jorge Bucaran e11cd69f17
refactor: embed version echo to argv switch 5 years ago
Jorge Bucaran 5ddafed654
refactor: don't read entire fisher.fish to get version 5 years ago
Jorge Bucaran 91417201f4
fix: refactor parallel fetch; close #518
- Resolve circular dependencies for local packages
  - Integrate _fisher_deps functionality to _fisher_fetch
- Update _fisher_jobs to exit with status 1 if there are no jobs
- Use `set -q myvar[1]` instead of `test -z $myvar` where possible
5 years ago
Jorge Bucaran db82938731
fix: sed regexes; bug introduced with fe1cc9805 5 years ago
Jorge Bucaran 12ee3cb33e
refactor: remove _fisher_wait function; use inline solution
To be eventually replaced by the `wait` builtin.
5 years ago
Jorge Bucaran 972eed7aa8
refactor: simplify _fisher_add and _fisher_rm code 5 years ago
Jorge Bucaran 632917c7d2
fix: show packages installed from a branch/tag in `fisher ls` 5 years ago
Jorge Bucaran 8a99865be5
refactor: consume empty lines in fishfile 5 years ago
Jorge Bucaran 3a13ba9d68
feat: allow inline comments in fishfile 5 years ago
Jorge Bucaran 975aa989c9
refactor: rename _fisher_diff to _fisher_parse 5 years ago
Jorge Bucaran fe1cc9805c
refactor: make $HOME to `~' sed regex stricter 5 years ago
Jorge Bucaran 8cb6692785
fix: add local packages to fishfile 5 years ago
Jorge Bucaran 61f679e6a3
fix: if inside a local package, allow installing with: . or ./; close #513 5 years ago
Jorge Bucaran 6401d18504
3.2.5
- ci: use && (tears of joy)
- docs: better explore package directions
- refactor: add license info to README; remove LICENSE file
- refactor `fisher ls REGEX`
- refactor: merge fishfile read/write parser to one script
- refactor: take advantage of nullglob in for loops
- refactor: prepend "fisher:" to error messages to improve logging
- refactor: remove unnecessary message after self-uninstall
- refactor: rename `fisher self-complete` to `fisher complete`
- refactor: simplify status report format script
5 years ago
Jorge Bucaran 9fc0779339
Merge pull request #516 from stefanmaric/master
Override fishfile content instead of replacing the file
5 years ago
Stefan Maric 1211e0bafa fix: override fishfile content instead of replacing the file
This allows fishfile to be a symlink, which I used to keep track of my
dotfiles in a repo, and broke after upgrading to V3.
5 years ago
Jorge Bucaran f1890a54d2
docs: uninstall→remove; add "humorous" note 5 years ago
Jorge Bucaran f1766dcfa0
refactor: automate erasing variables in uninstall 5 years ago
Jorge Bucaran 81f03702e6
docs: document changes to ls output and new regex filter feat 5 years ago
Jorge Bucaran d1e49f8d9a
3.2.4 5 years ago
Jorge Bucaran 78c0852162
feat: filter ls output using a regular expression; close #512 5 years ago
Jorge Bucaran 12661c592f
fix: ls should show only user installed packages; close #511 5 years ago
Jorge Bucaran 03bfe5ed2a
3.2.3 5 years ago
Jorge Bucaran 14c740d1d6
docs: move legacy fish support guide to issues; #510 5 years ago
Jorge Bucaran fbfc7c04f3
refactor: improve `fisher rm` completions
For tab completions we want to list only the packages that you
added yourself (via the CLI or fishfile) and ignore those that
are installed but are dependencies of another package/s.
5 years ago
Jorge Bucaran 5cb9b3d7ea
refactor: keep break on the same line 5 years ago
Jorge Bucaran 076e12db1a
refactor: for consistency, don't use builtin jobs, just jobs 5 years ago
Jorge Bucaran 37335526dc
refactor: date +%s%3N should work on Linux (or print only seconds) 5 years ago
Jorge Bucaran e1469e5a39
fix: use same path for other *BSDs in _fisher_now 5 years ago
Jorge Bucaran fff873955a
fix: print result even if t1-t0 equals 0; close #508 5 years ago
Jorge Bucaran 41ef268684
docs: move info about local packages to end of section 5 years ago
Jorge Bucaran 37c9d70674
refactor: improve awk script readability in _fisher_fetch 5 years ago
Jorge Bucaran 23462edfd0
refactor: improve fishfile read field sep regex 5 years ago
Jorge Bucaran 9293e8b3b7
refactor: improve jobs regex 5 years ago
Jorge Bucaran 2b764b89b1
docs: add link to tab completion 5 years ago
Jorge Bucaran 6990b81599
refactor: use -e flag for consistency 5 years ago
Jorge Bucaran 7140368155
refactor: remove extraneous argument 5 years ago
Jorge Bucaran 79b2f21662
3.2.2 5 years ago
Jorge Bucaran 64a812e90e
bug: fix name format regex; close #506 5 years ago
Jorge Bucaran 2c7197bdfb
docs: more style 5 years ago
Jorge Bucaran 00c5f40318
docs: improve style; move migration help tip to the top 5 years ago
Jorge Bucaran 8a3613405b
Merge pull request #483 from jerr0328/patch-1
docs: Link to awesome-fish-shell list
5 years ago
Jorge Bucaran 78f35610ca
3.2.1 5 years ago
Jorge Bucaran 49785a134b
fix: don't create cache directory before fetching 5 years ago
Jorge Bucaran 859c85a299
Merge pull request #504 from jorgebucaran/3.2.0
3.2.0
5 years ago
Jorge Bucaran 39e9f3f340
3.2.0
- Optimize startup path #494
  - Cuts fisher-related startup time to roughly 25ms
  - Reduce legacy fish support (~~>=2.0~~ >=2.1)
- Read fishfile from `$fisher_path` instead of `$fish_config` #480, #479
- Don't add invalid packages to fishfile / validate fishfile #478 #484 #492
- Rewrite tar expansion logic / don't use `--strip-components` #489 #496
  - Better OpenBSD support
  - Better msys2 on Windows 10 support
- Create symbolic links of original files when adding local packages #502
5 years ago
Sefa Eyeoglu d65b86487b
Read fishfile from $fisher_path instead of $fish_config (#480) 5 years ago
Bjorn Neergaard 6e5a751e16
Optimize fisher startup path (#494)
* With the addition of keybinding support for fish 2.x, fisher greatly
increases shell startup time (50-100ms in my testing). This is due to a
number of reasons, including using less-than-ideal builtins,
unconditionally running mkdir, unconditionally recreating
conf.d/fisher.fish, and checking for curl on startup (instead of when
curl is used).

* This patch cuts fisher-related startup time to roughly 25ms, simplifying
the code paths as much as I am able.

* The source function is removed as a compromise for speed. Fish 2.1 and
greater support `source`, and supporting fish 2.0 is not worth a hefty
speed penalty in my opinion.

* Remove curl checks, invert version logic.

* Update README to reflect fish 2.1+ requirement
5 years ago
Jorge Bucaran 2934a92cb6
docs: improve fishfile section 5 years ago