-
Notifications
You must be signed in to change notification settings - Fork 22
/
fundle.fish
18 lines (14 loc) · 1.29 KB
/
fundle.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
complete -f -c fundle -n '__fish_prog_needs_command' -a init -d "load all plugins"
complete -f -c fundle -n '__fish_prog_needs_command' -a plugin -d "add a plugin"
complete -f -c fundle -n '__fish_prog_needs_command' -a list -d "list plugins"
complete -f -c fundle -n '__fish_prog_needs_command' -a install -d "install all plugins"
complete -f -c fundle -n '__fish_prog_needs_command' -a update -d "update existing plugins"
complete -f -c fundle -n '__fish_prog_needs_command' -a clean -d "cleans unused plugins"
complete -f -c fundle -n '__fish_prog_needs_command' -a self-update -d "update fundle"
complete -f -c fundle -n '__fish_prog_needs_command' -a version -d "display fundle version"
complete -f -c fundle -n '__fish_prog_needs_command' -a help -d "display helps"
complete -f -c fundle -n '__fish_prog_using_command install' -s u -l update -d "update existing plugins (deprecated)"
complete -f -c fundle -n '__fish_prog_using_command list' -s s -l short -d "show a short list with plugin names only"
complete -f -c fundle -n '__fish_prog_using_command init' -s p -l profile -d "profile time for loading each plugin"
complete -f -c fundle -n '__fish_prog_using_command plugin' -l url -d "set the plugin URL"
complete -f -c fundle -n '__fish_prog_using_command plugin' -l path -d "set the plugin load path"