Created
April 21, 2011 13:33
-
-
Save mattsgarrison/934477 to your computer and use it in GitHub Desktop.
Unbind the cursor keys in insert, normal and visual modes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for prefix in ['i', 'n', 'v'] | |
for key in ['<Up>', '<Down>', '<Left>', '<Right>'] | |
exe prefix . "noremap " . key . " <Nop>" | |
endfor | |
endfor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment