Created
October 16, 2012 18:50
-
-
Save techleed/3901196 to your computer and use it in GitHub Desktop.
Sublime Text 2: User Key Bindings
This file contains hidden or 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": [",","x"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": [",","x"], "command": "exit_visual_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode"}, | |
{ "key": "num_selections", "operand": 1}, | |
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": false } | |
] | |
}, | |
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false}, | |
"context": | |
[ | |
{ "key": "overlay_visible", "operator": "equal", "operand": true } | |
] | |
}, | |
{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true}, | |
"context": | |
[ | |
{ "key": "overlay_visible", "operator": "equal", "operand": true } | |
] | |
}, | |
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false}, | |
"context": | |
[ | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": true } | |
] | |
}, | |
{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true}, | |
"context": | |
[ | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": true } | |
] | |
} | |
] |
Added previous/next navigation fo autocomplete screens.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Vintange remapping of the esc key and previous/next navigation on overlay screens (i.e. the quick panel).