Skip to content

Instantly share code, notes, and snippets.

@eproxus
Created May 26, 2015 08:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eproxus/2b41eb433383359dee4f to your computer and use it in GitHub Desktop.
Save eproxus/2b41eb433383359dee4f to your computer and use it in GitHub Desktop.
Vintageous: Disable arrow keys in insert mode
// 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