Last active
March 2, 2017 22:35
-
-
Save braver/2057fd18222923b21f58 to your computer and use it in GitHub Desktop.
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": ["ctrl+tab"], "command": "next_view" }, | |
| { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
| { "keys": ["super+v"], "command": "paste_and_indent" }, | |
| { "keys": ["super+shift+v"], "command": "paste" }, | |
| { "keys": ["super+alt+t"], "command": "open_terminal_project_folder" }, | |
| { "keys": ["super+alt+g"], "command": "gitup_open" }, | |
| { "keys": ["end"], "command": "next_result" }, | |
| { "keys": ["home"], "command": "prev_result" }, | |
| { "keys": ["enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line in Braces.sublime-macro"}, "context": | |
| [ | |
| { "key": "setting.auto_indent", "operator": "equal", "operand": true }, | |
| { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, | |
| { "key": "preceding_text", "operator": "regex_contains", "operand": "\\($", "match_all": true }, | |
| { "key": "following_text", "operator": "regex_contains", "operand": "^\\)", "match_all": true } | |
| ] | |
| }, | |
| { "keys": ["enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line in Braces.sublime-macro"}, "context": | |
| [ | |
| { "key": "setting.auto_indent", "operator": "equal", "operand": true }, | |
| { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, | |
| { "key": "preceding_text", "operator": "regex_contains", "operand": "\\[$", "match_all": true }, | |
| { "key": "following_text", "operator": "regex_contains", "operand": "^\\]", "match_all": true } | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment