diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2002-03-15 16:26:08 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2002-03-15 16:26:08 +0000 |
commit | 79323d6d41c91860cd05800a06cf8076df5051bd (patch) | |
tree | 0c08a2486422faa6f805589f2f60f640134b455b /Completion/X/Command/_nedit | |
parent | 2fa33574f029358dc1597b1ff8700385d7c8332a (diff) | |
download | zsh-79323d6d41c91860cd05800a06cf8076df5051bd.tar.gz zsh-79323d6d41c91860cd05800a06cf8076df5051bd.tar.xz zsh-79323d6d41c91860cd05800a06cf8076df5051bd.zip |
16842: resolve name clash for nc between netcat and the nedit client for
completion and add _pick_variant to resolve program variants in general
Diffstat (limited to 'Completion/X/Command/_nedit')
-rw-r--r-- | Completion/X/Command/_nedit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/X/Command/_nedit b/Completion/X/Command/_nedit index f25ad503a..c915c25ec 100644 --- a/Completion/X/Command/_nedit +++ b/Completion/X/Command/_nedit @@ -1,4 +1,4 @@ -#compdef nedit nc +#compdef nedit nedit-nc=nc ncl=nc local state line expl nedit_common curcontext="$curcontext" ret=1 typeset -A opt_args @@ -14,7 +14,7 @@ nedit_common=( \ '*-xrm:resource:_x_resource' \ '*:file:_files' ) -if [[ $service = *nc ]]; then +if [[ $service = nc ]]; then _x_arguments -C \ '(-noask)-ask[prompt if no server found]' \ '(-ask)-noask[start a new server without asking if none found]' \ |