mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
2cbbb00dcb
* Deprecate fisher --list in favor of a new command fisher list. The behavior is roughly the same. See fisher help list for usage. tl;dr: Use list to query the local system / cache and search to query the index. * Teach fisher_plugin_walk about fish_postexec, fish_command_not_found and fish_preexec event emitters and erase them during uninstall if they were defined in a snippet. * Fisherman now recognizes the following aliases by default: i for install, u for update, l for list, s for search and h for help. * Large documentation rewrite. Better, simpler, more concise and more consistent. * Fisherman now detects if users have modified their fish prompt using fish_config and if so, uninstalls $fisher_prompt.
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# This is a Fishfile, created by ocean inside a sea tornado of sharks!
|
|
#
|
|
# The fishfile is your ship's log and tells your adventures across the
|
|
# 7 seas and beyond. The old Fisherman will keep track of your plugins
|
|
# in this file. Plugins can be names, URLs or paths.
|
|
#
|
|
# Comments and empty lines are never removed. You are the captain!
|
|
#
|
|
# You can store this file in any place you like and Fisherman will
|
|
# make a note to remember that.
|
|
#
|
|
# set -g fisher_file ~/.config/fish/fishfile
|
|
#
|
|
# If you would like to restore a previous Fisherman installation, you
|
|
# can do so too:
|
|
#
|
|
# fisher install < your/good/old/fishfile
|
|
|
|
foo
|
|
bar
|
|
baz
|
|
|
|
# Plugins installed from unknown URLs look like this.
|
|
|
|
https://github.com/quux/quux
|
|
https://github.com/quux/pkg-hoge
|
|
https://github.com/quux/omf-theme-foobar
|
|
https://github.com/quux/fish-fred
|
|
https://github.com/quux/fisher-thud
|
|
|
|
# You can install a plugin from a local directory too.
|
|
|
|
/Users/fisherboy/Projects/fisherman/plugins/chomp
|
|
|
|
# You can also install a plugin from a gist. There is no formal way to name a gist,
|
|
# so a gist plugin is recommended to export a single fish function. The repository
|
|
# may include other files too, but there should be only *one* fish file.
|
|
|
|
gisty@https://gist.github.com/xxxx
|