Created
February 2, 2015 18:30
-
-
Save javajosh/3c83cd66922ef27a0431 to your computer and use it in GitHub Desktop.
How to Tab out of a closed quote in Sublime text
This file contains hidden or 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": "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
Pop this in your user keybindings - (Preferences/Key Bindings - User). Then you can tab out of completed quotes, parens, etc.