fix(vim): <C-_> now <C-/> as it should be in the first place
This commit is contained in:
parent
207ad67a7b
commit
b2a731e341
3 changed files with 7 additions and 5 deletions
|
@ -52,10 +52,9 @@ noremap <C-Y> "+y
|
|||
noremap <C-P> "+P
|
||||
|
||||
" Shortcut to comment a line
|
||||
" <C-_> means ctrl+/ for vim, for some reason...
|
||||
map <C-_> gcc
|
||||
vmap <C-_> gc
|
||||
imap <C-_> <esc>gc
|
||||
map <C-/> gcc
|
||||
vmap <C-/> gc
|
||||
imap <C-/> <esc>gc
|
||||
|
||||
" Clear last search result
|
||||
map <leader>c :noh<CR>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue