diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-04-01 16:19:15 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-04-01 16:19:15 +0000 |
commit | b9c58a73ac2eace89340b268db852c8a158bd707 (patch) | |
tree | ca4e713df765174bc90fcc2e8c2a3be9288905de /Completion/Builtins/_unhash | |
parent | e6be1f76cf77a63dd79dbe3d6eea62815caa87ab (diff) | |
download | zsh-b9c58a73ac2eace89340b268db852c8a158bd707.tar.gz zsh-b9c58a73ac2eace89340b268db852c8a158bd707.tar.xz zsh-b9c58a73ac2eace89340b268db852c8a158bd707.zip |
various doc fixes and minor completion function changes, most of which
are to use the -A "-*" and -S options to _arguments (13863)
Diffstat (limited to 'Completion/Builtins/_unhash')
-rw-r--r-- | Completion/Builtins/_unhash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Builtins/_unhash b/Completion/Builtins/_unhash index 927511887..bf74f07c7 100644 --- a/Completion/Builtins/_unhash +++ b/Completion/Builtins/_unhash @@ -2,12 +2,12 @@ local expl state line curcontext="$curcontext" -_arguments -C -s \ +_arguments -C -s -S \ '(-a -f *)-d[remove named directories]:*:named directory:->nameddir' \ '(-d -f *)-a[remove aliases]:*:aliases:_aliases' \ '(-d -a *)-f[remove functions]:*:functions:_functions' \ '-m[treat arguments as patterns]' \ - '*:commands: _command_names -e' && return 0 + '(-a -d -f -m)*:commands: _command_names -e' && return 0 [[ "$state" = nameddir ]] && _wanted named-directories expl 'named directory' compadd -k nameddirs |