diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:01:30 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:01:30 +0000 |
commit | f1df529dc8839b75f254d0c9bb20bc67eae4b64b (patch) | |
tree | 86ffcae2ffdc0a7f0576bdb3ff2acebdc1e84936 | |
parent | 66752b355dee1695035360cb6e347aec2080fad4 (diff) | |
download | zsh-f1df529dc8839b75f254d0c9bb20bc67eae4b64b.tar.gz zsh-f1df529dc8839b75f254d0c9bb20bc67eae4b64b.tar.xz zsh-f1df529dc8839b75f254d0c9bb20bc67eae4b64b.zip |
moved to Completion/Unix/Command/_sh
-rw-r--r-- | Completion/User/_sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Completion/User/_sh b/Completion/User/_sh deleted file mode 100644 index 22379856e..000000000 --- a/Completion/User/_sh +++ /dev/null @@ -1,13 +0,0 @@ -#compdef sh ksh bash zsh csh tcsh rc - -if (( CURRENT == ${words[(i)-c]} + 1 )); then - compset -q - _normal -else - local n=${words[(b:2:i)[^-]*]} - if (( n <= CURRENT )); then - compset -n $n - _normal && return 0 - fi - _default -fi |