Fix ctrl-c esc mapping

This commit is contained in:
Hunter Haugen 2016-02-09 09:08:03 -08:00
parent 04c38b6f3b
commit 6a551e5d20

4
.vimrc
View file

@ -729,7 +729,9 @@ noremap <Leader>J :s/\%#\(.*\)\n\(.*\)/\2\1<CR>
inoremap jj <Esc>
" C-c and <Esc> are not entirely the same, but I want them to be
noremap <C-c> <Esc>
inoremap <C-c> <Esc>
" ... but that doesn't seem to work, so
inoremap <C-l> <Esc>
" Kill line like emacs {{{2
"noremap <C-k> "_dd