]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Remove jj mapping.
authorSimon Ruderich <simon@ruderich.org>
Fri, 6 Sep 2013 01:54:09 +0000 (03:54 +0200)
committerSimon Ruderich <simon@ruderich.org>
Fri, 6 Sep 2013 01:54:09 +0000 (03:54 +0200)
vimrc

diff --git a/vimrc b/vimrc
index 82e8d33b2dcd01d9394f9d27f5dec90909f64f2e..e268673748a764a24cb91eaaf6ff540066ef2e56 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -483,12 +483,10 @@ endif
 " modified by a plugin or other settings. Except for <Nop> which isn't
 " affected by mappings.
 
-" Easy way to exit insert mode. jk is preferred because it's faster.
-inoremap jj <Esc>
+" Easy way to exit insert mode (jj is too slow).
 inoremap jk <Esc>
 " Also for command mode, thanks to http://github.com/mitechie/pyvim
 " (2010-10-15).
-cnoremap jj <C-C>
 cnoremap jk <C-C>
 
 " Disable arrow keys for all modes except command modes. Thanks to James Vega