Skip to content

Instantly share code, notes, and snippets.

@aviris
Created November 12, 2013 23:24
Show Gist options
  • Save aviris/7440685 to your computer and use it in GitHub Desktop.
Save aviris/7440685 to your computer and use it in GitHub Desktop.
Tab out of paired characters in Sublime Text (e.g. "",{},[],(),**,__, etc.).
[
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)\"\\]*_}]", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment