Created
September 11, 2014 06:24
-
-
Save cycold/5c0ff97c244ce1ba5d98 to your computer and use it in GitHub Desktop.
sublime key shutcuts
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
Show hidden characters
[ | |
{ "keys": ["alt+/"], "command": "auto_complete" }, | |
{ "keys": ["ctrl+shift+c"], "command": "toggle_side_bar" }, | |
{ "keys": ["ctrl+shift+g"], "command": "find_all_under" }, | |
{ "keys": ["ctrl+shift+x"], "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"} }, | |
{ "keys": ["ctrl+shift+s"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["ctrl+shift+z" ], "command": "view_in_browser" }, | |
{ "keys": ["ctrl+shift+l"], "command": "next_view_in_stack" }, | |
{ "keys": ["ctrl+shift+h"], "command": "prev_view_in_stack" }, | |
{ "keys": ["alt+l"], "command": "focus_neighboring_group" }, | |
{ "keys": ["ctrl+k", "ctrl+shift+left"], "command": "move_to_neighboring_group", "args": {"forward": false} }, | |
{ "keys": ["ctrl+k", "ctrl+shift+right"], "command": "move_to_neighboring_group" }, | |
{ "keys": ["ctrl+alt+k"], "command": "move", "args": {"by": "pages", "forward": false} }, | |
{ "keys": ["ctrl+alt+l"], "command": "move", "args": {"by": "pages", "forward": true } }, | |
{ "keys": ["ctrl+0"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["ctrl+-"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
{ "keys": ["ctrl+b"], "command": "right_delete" }, | |
{ "keys": ["ctrl+w"], "command": "close" }, | |
{ "keys": ["i","i"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["i","i"], "command": "hide_auto_complete", "context": | |
[ | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": true } | |
] | |
}, | |
{ "keys": ["i","i"], "command": "vi_cancel_current_action", "context": | |
[ | |
{ "key": "setting.command_mode" }, | |
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": false }, | |
{ "key": "vi_has_input_state" } | |
] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment