From 181e87f08234d9b0ecbfbb6a6ce8d0164d722aad Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Fri, 21 Oct 2016 00:04:45 +0100 Subject: [PATCH] Still allow Vim arrow keys while in INSERT mode --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 998218a..8298a85 100644 --- a/.vimrc +++ b/.vimrc @@ -60,7 +60,7 @@ let g:auto_save = 1 " enable AutoSave on Vim startup let mapleader="\" " Unbind arrow keys -for prefix in ['i', 'n', 'v'] +for prefix in ['n', 'v'] for key in ['', '', '', ''] exe prefix . "noremap " . key . " " endfor