Created
May 26, 2015 08:16
-
-
Save eproxus/2b41eb433383359dee4f to your computer and use it in GitHub Desktop.
Vintageous: Disable arrow keys in insert mode
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
Show hidden characters
// Vintageous: disable arrow keys in insert mode | |
{"keys": ["left"], "command": "unbound", "args": {"mode": "mode_insert"}, | |
"context": [ | |
{"key": "vi_insert_mode_aware"}, | |
{"key": "auto_complete_visible", "operand": false}, | |
]}, | |
{"keys": ["right"], "command": "unbound", "args": {"mode": "mode_insert"}, | |
"context": [ | |
{"key": "vi_insert_mode_aware"}, | |
{"key": "auto_complete_visible", "operand": false}, | |
]}, | |
{"keys": ["up"], "command": "unbound", "args": {"mode": "mode_insert"}, | |
"context": [ | |
{"key": "vi_insert_mode_aware"}, | |
{"key": "auto_complete_visible", "operand": false}, | |
]}, | |
{"keys": ["down"], "command": "unbound", "args": {"mode": "mode_insert"}, | |
"context": [ | |
{"key": "vi_insert_mode_aware"}, | |
{"key": "auto_complete_visible", "operand": false}, | |
]}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment