mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +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
9 lines
649 B
Fish
9 lines
649 B
Fish
#apt-proxy-import
|
|
complete -c apt-proxy-import -s h -l help -d 'Display help and exit'
|
|
complete -f -c apt-proxy-import -s V -l version -d 'Display version and exit'
|
|
complete -f -c apt-proxy-import -s v -l verbose -d 'Verbose mode'
|
|
complete -f -c apt-proxy-import -s q -l quiet -d 'No message to STDOUT'
|
|
complete -f -c apt-proxy-import -s r -l recursive -d 'Recurse into subdir'
|
|
complete -r -c apt-proxy-import -s i -l import-dir -a '(for i in */; echo $i; end)' -d 'Dir to import'
|
|
complete -r -c apt-proxy-import -s u -l user -a '(__fish_complete_users)' -d 'Change to user'
|
|
complete -r -c apt-proxy-import -s d -l debug -d 'Debug level[default 0]'
|