diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:31:34 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:31:34 +0000 |
commit | 215e869bb5fcff3795120a8972c2fefc0583962e (patch) | |
tree | 004c7fd440dd1af554be9ca19e0cfa967f83f85c | |
parent | c95d0a8bdd3e21e4982367b854e3cc732a448f43 (diff) | |
download | zsh-215e869bb5fcff3795120a8972c2fefc0583962e.tar.gz zsh-215e869bb5fcff3795120a8972c2fefc0583962e.tar.xz zsh-215e869bb5fcff3795120a8972c2fefc0583962e.zip |
moved to Completion/Zsh/Command/_unhash
-rw-r--r-- | Completion/Builtins/_unhash | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Completion/Builtins/_unhash b/Completion/Builtins/_unhash deleted file mode 100644 index bf74f07c7..000000000 --- a/Completion/Builtins/_unhash +++ /dev/null @@ -1,13 +0,0 @@ -#compdef unhash - -local expl state line curcontext="$curcontext" - -_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]' \ - '(-a -d -f -m)*:commands: _command_names -e' && return 0 - -[[ "$state" = nameddir ]] && - _wanted named-directories expl 'named directory' compadd -k nameddirs |