Skip to content

Instantly share code, notes, and snippets.

@jvolden
Created February 27, 2018 00:45
Show Gist options
  • Save jvolden/7001eaa50396ca67772e8c290f9a92b5 to your computer and use it in GitHub Desktop.
Save jvolden/7001eaa50396ca67772e8c290f9a92b5 to your computer and use it in GitHub Desktop.
Tab Escaping in Sublime Text 3
[
{ "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