about summary refs log tree commit diff
path: root/Completion/Cvs
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-08-26 12:23:17 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-08-26 12:23:17 +0000
commit4d86ee0d400f5a3283eacf2307be499bc1392550 (patch)
tree7439b933dcf28fa79c2d2e993af50a9f5a732ee1 /Completion/Cvs
parent5e5e9e12c50b14e5afc0310fd5c7548a8f7eec42 (diff)
downloadzsh-4d86ee0d400f5a3283eacf2307be499bc1392550.tar.gz
zsh-4d86ee0d400f5a3283eacf2307be499bc1392550.tar.xz
zsh-4d86ee0d400f5a3283eacf2307be499bc1392550.zip
zsh-workers/7500
Diffstat (limited to 'Completion/Cvs')
-rw-r--r--Completion/Cvs/_cvs_command22
1 files changed, 11 insertions, 11 deletions
diff --git a/Completion/Cvs/_cvs_command b/Completion/Cvs/_cvs_command
index 837c7cbb1..d2db059ea 100644
--- a/Completion/Cvs/_cvs_command
+++ b/Completion/Cvs/_cvs_command
@@ -1,18 +1,18 @@
 #autoload
 
-typeset -A commands
-commands=(add "ad new"            admin "adm rcs"         annotate ann
-	  checkout "co get"       commit "ci com"         diff "di dif"
-	  edit ""                 editors ""              export "exp ex"
-	  history "hi his"        import "im imp"         init ""
-	  log "lo rlog"           login "logon lgn"       logout ""
-	  rdiff patch             release "re rel"        remove "rm delete"
-	  status "st stat"        rtag "rt rfreeze"       tag "ta freeze"
-	  unedit ""               update "up upd"         watch ""
-	  watchers "")
+typeset -A cmds
+cmds=(add "ad new"            admin "adm rcs"         annotate ann
+      checkout "co get"       commit "ci com"         diff "di dif"
+      edit ""                 editors ""              export "exp ex"
+      history "hi his"        import "im imp"         init ""
+      log "lo rlog"           login "logon lgn"       logout ""
+      rdiff patch             release "re rel"        remove "rm delete"
+      status "st stat"        rtag "rt rfreeze"       tag "ta freeze"
+      unedit ""               update "up upd"         watch ""
+      watchers "")
 
 if (( CURRENT == 1 )); then
-  compadd ${(k)commands} || compadd ${(kv)=commands}
+  compadd ${(k)cmds} || compadd ${(kv)=cmds}
 else
   case "$words[1]" in
     add|ad|new) _cvs_add;;