mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
c6caa06dbe
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.
21 lines
895 B
Fish
21 lines
895 B
Fish
# Completions for the eix tool's update-eix-remote command
|
|
# http://dev.croup.de/proj/eix and http://sourceforge.net/projects/eix/
|
|
|
|
# Author: Tassilo Horn <tassilo@member.fsf.org>
|
|
|
|
##########
|
|
# UPDATE-EIX-REMOTE
|
|
# 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 -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
|
|
set -l subcmds "
|
|
"
|
|
complete -c update-eix-remote -xa \
|
|
'update\t"Fetch the eix-caches of some layman overlays into a temporary file resp. into FILE and add them to the eix database"
|
|
fetch\t"Only fetch the overlays into FILE"
|
|
add\t"Only add the overlays from FILE to the eix database"
|
|
remove\t"Remove all temporarily added virtual overlays from the eix database"'
|