about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-05-21 12:28:27 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-05-21 12:28:27 +0000
commitf6a219657fb694bda7c5b6a2a9c5fb088c0e532f (patch)
treee9f421ae772e628e999ac6444df48512297f4c1c /Completion/Zsh
parent11ee75b6dd5d6dc72469ca5eb05998418ba642b2 (diff)
downloadzsh-f6a219657fb694bda7c5b6a2a9c5fb088c0e532f.tar.gz
zsh-f6a219657fb694bda7c5b6a2a9c5fb088c0e532f.tar.xz
zsh-f6a219657fb694bda7c5b6a2a9c5fb088c0e532f.zip
make use of _arguments in _set (14409)
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/_set30
1 files changed, 23 insertions, 7 deletions
diff --git a/Completion/Zsh/Command/_set b/Completion/Zsh/Command/_set
index b96eb0efb..27c7f3c7d 100644
--- a/Completion/Zsh/Command/_set
+++ b/Completion/Zsh/Command/_set
@@ -1,9 +1,25 @@
 #compdef set
 
-local prev="$words[CURRENT-1]"
-
-if [[ "$prev" = [-+]o ]]; then
-  _options
-elif [[ "$prev" = -A ]]; then
-  _arrays
-fi
+noglob _arguments -s -S \
+  - list '+[list names of parameters]' - others \
+  '-o+[set specified option]:option:_options' \
+  '+o+[unset specified option]:option:_options' \
+  '-s[sort arguments in descending order]' \
+  '+s[sort arguments in ascending order]' \
+  '-A+[define array with specified name]:array:_arrays' \
+  '+A+[replace initial elements in specified array]:array:_arrays' \
+  {-,+}0[correct] {-,+}1[printexitvalue] {-,+}2[no-badpattern] \
+  {-,+}3[no-nomatch] {-,+}4[globdots] {-,+}5[notify] {-,+}6[bgnice] \
+  {-,+}7[ignoreeof] {-,+}8[markdirs] {-,+}9[autolist] {-,+}B[no-beep] \
+  {-,+}C[no-clobber] {-,+}D[pushdtohome] {-,+}E[pushdsilent] {-,+}F[no-glob] \
+  {-,+}G[nullglob] {-,+}H[rmstarsilent] {-,+}I[ignorebraces] {-,+}J[autocd] \
+  {-,+}K[no-banghist] {-,+}L[sunkeyboardhack] {-,+}M[singlelinezle] \
+  {-,+}N[autopushd] {-,+}O[correctall] {-,+}P[rcexpandparam] {-,+}Q[pathdirs] \
+  {-,+}R[longlistjobs] {-,+}S[recexact] {-,+}T[cdablevars] \
+  {-,+}U[mailwarning] {-,+}V[no-promptcr] {-,+}W[autoresume] \
+  {-,+}X[listtypes] {-,+}Y[menucomplete] {-,+}Z[zle] {-,+}a[allexport] \
+  {-,+}d[no-globalrcs] {-,+}e[errexit] {-,+}f[no-rcs] {-,+}g[histignorespace] \
+  {-,+}h[histignoredups] {-,+}i[interactive] {-,+}k[interactivecomments] \
+  {-,+}l[login] {-,+}m[monitor] {-,+}n[no-exec] {-,+}p[privileged] \
+  {-,+}r[restricted] {-,+}t[singlecommand] {-,+}u[no-unset] {-,+}v[verbose] \
+  {-,+}w[chaselinks] {-,+}x[xtrace] {-,+}y[shwordsplit]