Added ctrl+n and ctrl+b for :n and :N respectively

This commit is contained in:
Wryn Wagner 2019-08-06 14:41:27 -06:00
parent 715fa13926
commit 637573de89

5
vimrc
View File

@ -72,6 +72,10 @@ nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
" }}}
" (CTRL + n) for files
nnoremap <C-n> :n<CR>
nnoremap <C-b> :N<CR>
" <SPACE> to execute macro on q
nnoremap <Space> @q
@ -97,6 +101,7 @@ nnoremap _ :m -2 <CR>
" - (insert mode) set current word to upper-case
inoremap <c-u> <esc>viwUea
" }}}