]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Also "fix" :Wa.
authorSimon Ruderich <simon@ruderich.org>
Fri, 11 Dec 2009 08:42:00 +0000 (09:42 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 11 Dec 2009 08:42:00 +0000 (09:42 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 4b166e994d90d06a547ed5a5d12cfd4399e84617..17ad62493e60cda2fd3ddcd24e1ff428aae88f30 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -162,11 +162,14 @@ nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
 " mailing list for the commands.
 if v:version < 700
     cnoreabbrev W w
+    cnoreabbrev Wa wa
     cnoreabbrev Wq wq
     cnoreabbrev Wqa wqa
 else
     cnoreabbrev <expr> W
         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
+    cnoreabbrev <expr> Wa
+        \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
     cnoreabbrev <expr> Wq
         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
     cnoreabbrev <expr> Wqa