about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2010-06-22 21:59:59 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2010-06-22 21:59:59 +0000
commit2f4e224103720c1049ad68fe1f313ad17a6b5862 (patch)
treeb68eeffcb2d701c11bdf7fca3204f0da24eba0cc
parente3f764d1ef4377ccec978a43051c36e15179a754 (diff)
downloadzsh-2f4e224103720c1049ad68fe1f313ad17a6b5862.tar.gz
zsh-2f4e224103720c1049ad68fe1f313ad17a6b5862.tar.xz
zsh-2f4e224103720c1049ad68fe1f313ad17a6b5862.zip
28055: add some missing options to _vim
-rw-r--r--ChangeLog6
-rw-r--r--Completion/Unix/Command/_vim6
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b5fd9c33..cc43cdcd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-22  Doug Kearns  <dougkearns@gmail.com>
+
+	* 28055: Completion/Unix/Command/_vim: add some missing options.
+
 2010-06-22  Peter Stephenson  <pws@csr.com>
 
 	* 28047: Src/hist.c: make fc -R/-W more consistently verbose
@@ -13327,5 +13331,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5013 $
+* $Revision: 1.5014 $
 *****************************************************
diff --git a/Completion/Unix/Command/_vim b/Completion/Unix/Command/_vim
index 4438f3469..8244466f4 100644
--- a/Completion/Unix/Command/_vim
+++ b/Completion/Unix/Command/_vim
@@ -56,7 +56,7 @@ arguments=(
   '-p-[number of tabs to open (default: one for each file)]::tab count: '
   '-q-[quickfix file]:*:file:_vim_files'
   '*--cmd[execute given command before loading any RC files]:command: '
-  '-c[executed given command after loading the first file]:command: '
+  '-c[execute given command after loading the first file]:command: '
   '-S[source a session file after loading the first file]:session file:_files'
   '-s[read normal-mode commands from script file]:script file:_files'
   '-w[append all typed commands to given file]:output file:_files'
@@ -69,11 +69,15 @@ arguments=(
   '--remote-wait-silent[as --remote-wait but without complaining if not possible]:*:file:_vim_files'
   '--remote-send[send given keys to vim server if possible]:keys: '
   '--remote-tab[as --remote but open tab page for each file]:*:file:_vim_files'
+  '--remote-tab-silent[as --remote-silent but open tab page for each file]:*:file:_vim_files'
+  '--remote-tab-wait[as --remote-wait but open tab page for each file]:*:file:_vim_files'
+  '--remote-tab-wait-silent[as --remote-wait-silent but open tab page for each file]:*:file:_vim_files'
   '--remote-expr[evaluate given expression in a vim server and print result]:expression: '
   '--echo-wid[echo window ID on STDOUT, GUI version only]'
   '--literal[do not expand wildcards in arguments (this is useless with ZSH)]'
   '(- *)--serverlist[list available vim servers and exit]'
   '--servername[name of vim server to send to or name of server to become]:server name: '
+  '--startuptime[write startup timing messages to given file]:log file:_files'
   '--socketid[run GVIM in another window]'
   '-i[use given viminfo file instead of default .viminfo]:viminfo file:_files'
   '(- *)'{-h,--help}'[print help and exit]'