mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 14:29:16 +08:00
Don't use removed complete options
This was "--authoritative" (and unauthoritative). It was meant to make fish mark everything that couldn't be generated via the completions as an error, it was removed years ago and has been a no-op since then.
This commit is contained in:
parent
3a56c97087
commit
c6caa06dbe
|
@ -4,7 +4,7 @@
|
|||
# https://github.com/0rax/fish-bd
|
||||
#
|
||||
|
||||
complete -c bd -A -f
|
||||
complete -c bd -f
|
||||
|
||||
complete -c bd -s c -d "Classic mode: goes back to the first directory named as the string"
|
||||
complete -c bd -s s -d "Seems mode: goes back to the first directory containing string"
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
# EIX-SYNC
|
||||
complete -c eix-sync -s i -d "Ignore all previous options"
|
||||
complete -c eix-sync -s d -d "Only show differences to the previously saved database and exit"
|
||||
complete -c eix-sync -s s -xua '(__fish_print_users)@(__fish_print_hostnames):' -d "Sync via rsync from the given SERVER"
|
||||
complete -c eix-sync -s c -xua '(__fish_print_users)@(__fish_print_hostnames):' -d "Sync via rsync *to* the given CLIENT"
|
||||
complete -c eix-sync -s s -xa '(__fish_print_users)@(__fish_print_hostnames):' -d "Sync via rsync from the given SERVER"
|
||||
complete -c eix-sync -s c -xa '(__fish_print_users)@(__fish_print_hostnames):' -d "Sync via rsync *to* the given CLIENT"
|
||||
complete -c eix-sync -s U -d "Do not touch the database and omit the hooks after update-eix. (Implies -R)"
|
||||
complete -c eix-sync -s u -d "Update database only and show differences"
|
||||
complete -c eix-sync -s g -d "Do not call gensync (and the !commands in /etc/eix-sync.conf)"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
# Options
|
||||
complete -c update-eix-remote -s q -d "Be quiet"
|
||||
complete -c update-eix-remote -s v -d "Be verbose (default)"
|
||||
complete -c update-eix-remote -s u -xua '(__fish_print_users)' -d "Call wget as the given USER"
|
||||
complete -c update-eix-remote -s u -xa '(__fish_print_users)' -d "Call wget as the given USER"
|
||||
complete -c update-eix-remote -s o -d "Use the given PATH as $OVERLAYPARENT"
|
||||
|
||||
# Subcommands
|
||||
|
|
Loading…
Reference in New Issue
Block a user