about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:27:07 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:27:07 +0000
commitd09e97c9f85937f9b4c20abb06c66e4068c6a00e (patch)
treee9d47ef973880254133eedad489c2d4e80551545 /Completion/Zsh
parentb8821e159a1d2b834d3785194c21316789d35c84 (diff)
downloadzsh-d09e97c9f85937f9b4c20abb06c66e4068c6a00e.tar.gz
zsh-d09e97c9f85937f9b4c20abb06c66e4068c6a00e.tar.xz
zsh-d09e97c9f85937f9b4c20abb06c66e4068c6a00e.zip
moved from Completion/Builtins/_compdef
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/_compdef52
1 files changed, 52 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_compdef b/Completion/Zsh/Command/_compdef
new file mode 100644
index 000000000..eb1a2ebb6
--- /dev/null
+++ b/Completion/Zsh/Command/_compdef
@@ -0,0 +1,52 @@
+#compdef compdef
+
+local state line expl list disp curcontext="$curcontext"
+typeset -A opt_args
+
+_arguments -C -s -A "-*" -S \
+  '(-d)-a[make function autoloadable]' \
+  '(-d -p -P)-n[leave existing definitions intact]' \
+  ':completion function:->cfun' \
+  '*:commands: _command_names' \
+ - d \
+  '(-a -n)-d[delete]:*:completed command:->ccom' \
+ - p \
+  '(-n)-p[completion for command matching pattern]:completion function:->cfun:pattern' \
+ - P \
+  '(-n)-P[as -p for commands without own completion]:completion function:->cfun:pattern' \
+ - k \
+  '-k[define widget and key binding]:completion function:->cfun:style:->style:*:key' \
+ - K \
+  '-K[define multiple widgets based on function]:*::: :->multi' && return 0
+
+if [[ $state = multi ]]; then
+  case $(( CURRENT % 3 )) in
+  0) _message key
+     return 1;;
+  1) state=cfun;;
+  2) state=style;;
+  esac
+fi
+
+case $state in
+  ccom)
+    _wanted commands expl 'completed command' compadd -k _comps
+  ;;
+  cfun)
+    list=( ${^fpath:/.}/_(|*[^~])(:t) )
+    if zstyle -T ":completion:${curcontext}:functions" prefix-hidden; then
+      disp=( ${list[@]#_} )
+      _wanted functions expl 'completion function' \
+          compadd -d disp -a list
+    else
+      _wanted functions expl 'completion function' compadd -a list
+    fi
+  ;;
+  style)
+    _wanted widgetstyle expl 'widget style' \
+        compadd -M 'r:|-=* r:|=*' \
+            complete-word delete-char-or-list expand-or-complete \
+            expand-or-complete-prefix list-choices menu-complete \
+            menu-expand-or-complete reverse-menu-complete
+  ;;
+esac