From 637573de893217901f5bdf9591846991288054e8 Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Tue, 6 Aug 2019 14:41:27 -0600 Subject: [PATCH] Added ctrl+n and ctrl+b for :n and :N respectively --- vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vimrc b/vimrc index c099e7f..c648453 100644 --- a/vimrc +++ b/vimrc @@ -72,6 +72,10 @@ nnoremap h nnoremap j nnoremap k " }}} +" (CTRL + n) for files +nnoremap :n +nnoremap :N + " to execute macro on q nnoremap @q @@ -97,6 +101,7 @@ nnoremap _ :m -2 " - (insert mode) set current word to upper-case inoremap viwUea + " }}}