Last active
August 29, 2015 14:24
-
-
Save natanshalva/794b0c809dd2d80591b1 to your computer and use it in GitHub Desktop.
Sublime Text 3 - User Keys Bindings
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
[ | |
{ "keys": ["j", "j"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["J", "K"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false }, | |
{ "key": "setting.vintage_ctrl_keys" } | |
] | |
}, | |
{ "keys": ["J", "K"], "command": "exit_visual_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode"}, | |
{ "key": "num_selections", "operand": 1}, | |
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": false }, | |
{ "key": "setting.vintage_ctrl_keys" } | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment