]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Also use jj to exit command mode.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index d5496e6f7cd53872212cbe844ecae6f96618ff31..fef44f22ca13e31a36991bce41c41035d30551d4 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -7,7 +7,7 @@
 " instead. Thanks to godlygeek in #vim on Freenode (2009-06-19 22:21).
 if $HOME == '/root' || exists('$SUDO_USER')
     echomsg 'Running as root is forbidden! Use sudoedit.'
-    qa
+    qall
 endif
 
 
@@ -184,6 +184,9 @@ endif
 
 " Easy way to exit insert mode.
 inoremap jj <Esc>
+" Also for command mode, thanks to http://github.com/mitechie/pyvim
+" (2010-10-15).
+cnoremap jj <C-C>
 
 " Disable arrow keys for all modes except command modes. Thanks to James Vega
 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).