Created
February 27, 2018 00:45
-
-
Save jvolden/7001eaa50396ca67772e8c290f9a92b5 to your computer and use it in GitHub Desktop.
Tab Escaping in Sublime Text 3
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": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
[ | |
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true }, | |
{ "key": "has_next_field", "operator": "not_equal", "operand": true }, | |
{ "key": "auto_complete_visible", "operator": "not_equal", "operand": true }, | |
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, | |
{ "key": "following_text", "operator": "regex_contains", "operand": "(`|\\)|\\]|\\}|'|\").*", "match_all": true }, | |
{ "key": "preceding_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