diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:11:28 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:11:28 +0000 |
commit | e6ae573d6db11420262d28908b3486aa2926bbf0 (patch) | |
tree | fff9d24ecd9e4ae94d63f74dfe4a10d5395ba76b | |
parent | 439ed182744fea1ae1642f4a0dfeff8664b7cdf6 (diff) | |
download | zsh-e6ae573d6db11420262d28908b3486aa2926bbf0.tar.gz zsh-e6ae573d6db11420262d28908b3486aa2926bbf0.tar.xz zsh-e6ae573d6db11420262d28908b3486aa2926bbf0.zip |
moved from Completion/X/_x_name
-rw-r--r-- | Completion/X/Type/_x_name | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/X/Type/_x_name b/Completion/X/Type/_x_name new file mode 100644 index 000000000..38d4c26d3 --- /dev/null +++ b/Completion/X/Type/_x_name @@ -0,0 +1,9 @@ +#autoload + +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" +else + _message 'name' +fi |