Skip to content

Instantly share code, notes, and snippets.

@javajosh
Created February 2, 2015 18:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javajosh/3c83cd66922ef27a0431 to your computer and use it in GitHub Desktop.
Save javajosh/3c83cd66922ef27a0431 to your computer and use it in GitHub Desktop.
How to Tab out of a closed quote in Sublime text
{ "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 }
]
}
@javajosh
Copy link
Author

javajosh commented Feb 2, 2015

Pop this in your user keybindings - (Preferences/Key Bindings - User). Then you can tab out of completed quotes, parens, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment