diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:30:43 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:30:43 +0000 |
commit | 7eb5ec3e7a9074a4083f4fda307ba1e4b140f0fb (patch) | |
tree | 363eab89f3c705b72794256a308d7fbf9595cf35 | |
parent | 0edb843b598120f1f3aa73c9efd2ccd85b740dfc (diff) | |
download | zsh-7eb5ec3e7a9074a4083f4fda307ba1e4b140f0fb.tar.gz zsh-7eb5ec3e7a9074a4083f4fda307ba1e4b140f0fb.tar.xz zsh-7eb5ec3e7a9074a4083f4fda307ba1e4b140f0fb.zip |
moved to Completion/Zsh/Command/_source
-rw-r--r-- | Completion/Builtins/_source | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Completion/Builtins/_source b/Completion/Builtins/_source deleted file mode 100644 index 96b6c21bd..000000000 --- a/Completion/Builtins/_source +++ /dev/null @@ -1,14 +0,0 @@ -#compdef source . - -if [[ CURRENT -ge 3 ]]; then - compset -n 2 - _normal -else - if [[ -prefix */ && ! -o pathdirs ]]; then - _files - elif [[ $service = . ]]; then - _files -W path - else - _files -W "(. $path)" - fi -fi |