Skip to content

Instantly share code, notes, and snippets.

@jarontai
Last active December 23, 2015 10:49
Show Gist options
  • Save jarontai/6624268 to your computer and use it in GitHub Desktop.
Save jarontai/6624268 to your computer and use it in GitHub Desktop.
Skip over auto-completed tags in Sublime Text 2
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "[[:space:]]*", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^[\"'\\)\\}\\]\\_]", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "has_next_field", "operator": "equal", "operand": false }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment