mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
9c327b19a6
New fish_indent does that too, so this will make any future reformatting diffs smaller. Done using either of: perl -pi -e 'undef $/; s/\n*$/\n/' share/**.fish kak -n -f '<a-/>\n*<ret>d' share/**.fish
7 lines
309 B
Fish
7 lines
309 B
Fish
#completion for pkgadd
|
|
|
|
complete -c pkgadd -o u -l upgrade -d Upgrade
|
|
complete -c pkgadd -o f -l force -d 'Force installation, overwriting'
|
|
complete -c pkgadd -o r -l root -d 'Alternative installation root'
|
|
complete -c pkgadd -o v -l version -d 'Print version'
|
|
complete -c pkgadd -o h -l help -d 'Print help'
|