Fix ctrl-c esc mapping
This commit is contained in:
parent
04c38b6f3b
commit
6a551e5d20
1 changed files with 3 additions and 1 deletions
4
.vimrc
4
.vimrc
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue