Commit Graph

233 Commits (285fc352b7cffe90beaa3c4e2b29c30ae8171d02)

Author SHA1 Message Date
Jorge Bucaran db6801f565 Use inverted pyramid model 4 years ago
Jorge Bucaran d0c30d9723 Use proper capitalization 4 years ago
rany cd9d69209e
Use HTTPS for curl installation (#627)
Using HTTPS prevents: 

- accidentally running a captive portal login screen as a Fish script and sourcing it
- other security and privacy benefits of HTTPS
4 years ago
Jorge Bucaran 4ff6128860 Doc little tweaks 4 years ago
Jorge Bucaran 2bbc06a965 Add documentation for plugin authors, close #618 4 years ago
Jorge Bucaran 861cd38133 Simplify source file iteration during install 4 years ago
Jorge Bucaran ce6072f907
Small docs tweaks 4 years ago
Aurélien Ooms d69311a911
Use fish_plugins filename instead of old fishfile. (#597) 4 years ago
Jorge Bucaran dbf07b1709
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
4 years ago
Patrick c2c091f33e
fix uninstall package instructions (#586) 4 years ago
Jorge Bucaran 297c6b77c7
Revamp docs 4 years ago
Jorge Bucaran c9393460cf
Remove now pointless version badge 4 years ago
Jorge Bucaran 994506e594
Add note about where the fish config file is 4 years ago
Jorge Bucaran 3badc25962
Simplify changing the installation path section 4 years ago
Jorge Bucaran d847b79b63
Improve visibility of note on changing the installation path; close #541 4 years ago
Jorge Bucaran c19e4e7d16
Be specific about 'fish configuration file'; close #576 4 years ago
Jorge Bucaran c2b3ab0171
README tweaks
- Fix typos
- Remove CI badge
4 years ago
James Smith 3e4ae4b960
feat(ci): switch to GitHub Actions (#572)
Migration will switch from Travis CI to GitHub Actions.

Closes #567
4 years ago
Jorge Bucaran c22526cc5a
#0366d6 4 years ago
Jorge Bucaran 3f1d3d7db7
#24292e 4 years ago
Jorge Bucaran 47229c1429
README tweaks, use simpler language 4 years ago
Ross Donaldson 6d2d4107b4 Update the README to specify `fisher`'s ownership of `$XDG_CONFIG_HOME/fisher` (#554)
It's important users of `fisher` _not_ use this directory as the value of `fisher_home`.
5 years ago
Tobias Hernstig f3e87cf5f6 Change --event to --on-event (#549) 5 years ago
Jorge Bucaran 24b4aaa55b
Doc improvements 5 years ago
Jorge Bucaran fe5638d107
Less meta 5 years ago
Jorge Bucaran 1e6e80c0c1
Renew docs 5 years ago
Will Stone 9bdd1d5e61 Match version and help commands to actual in docs (#535)
The help and version commands use the "--" prefix. This updates the readme to reflect that.
5 years ago
Jorge Bucaran 7b4705f810
Fix typos and grammar errors 5 years ago
Jorge Bucaran d3469cfa33
docs: simplify installation instructions 6 years ago
Jorge Bucaran 05486e8767
docs: add link to curl dep version; improve uninstall 6 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
6 years ago
Jorge Bucaran f1890a54d2
docs: uninstall→remove; add "humorous" note 6 years ago
Jorge Bucaran f1766dcfa0
refactor: automate erasing variables in uninstall 6 years ago
Jorge Bucaran 81f03702e6
docs: document changes to ls output and new regex filter feat 6 years ago
Jorge Bucaran 14c740d1d6
docs: move legacy fish support guide to issues; #510 6 years ago
Jorge Bucaran 41ef268684
docs: move info about local packages to end of section 6 years ago
Jorge Bucaran 2b764b89b1
docs: add link to tab completion 6 years ago
Jorge Bucaran 2c7197bdfb
docs: more style 6 years ago
Jorge Bucaran 00c5f40318
docs: improve style; move migration help tip to the top 6 years ago
Jorge Bucaran 8a3613405b
Merge pull request #483 from jerr0328/patch-1
docs: Link to awesome-fish-shell list
6 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
6 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
6 years ago
Jorge Bucaran 2934a92cb6
docs: improve fishfile section 6 years ago
Rodrigo Bermúdez Schettino b47c0469db README: Update function option in conf.d (#497)
Replace non-existing --event argument with --on-event.
6 years ago
Tetsuya Ikenaga 60a34e50b4 docs: fix custom fisher_path configuration instructions (#495)
Avoid doubling `fish_function_path` and `fish_complete_path`.
6 years ago
Jorge Bucaran a8d7fb7830
docs: improve custom installation prefix instructions; fix #487 6 years ago
Jeremy 9458258f81
docs: Link to awesome-fish-shell list
As mentioned in https://github.com/jorgebucaran/fisher/issues/461#issuecomment-427638774, a link to the awesome-fish-shell list will help people find packages.
6 years ago
Jorge Bucaran 40d2882420
docs: improve writing style 6 years ago
Jorge Bucaran 152bdc43a0
docs: improve writing style 6 years ago
Jorge Bucaran b4c4023e16
docs: add additional note to "Using the fishfile" section 6 years ago