After working with vim in environments other than Mac I find myself missing the ability to use the arrow keys while in insert mode to navigate around. I know what I have to change is in ~/.vimrc but I don't know the syntax for it:
inoremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
I know the keys are ^[[A
, ^[[B
, ^[[C
, and ^[[D
for Up, Down, Left, and Right respectively. Would the syntax just be imap <Down> <^[[B>
? I'm a little sketched to change it before I know for sure because I don't want vim to be screwed up.