Skip to content

Instantly share code, notes, and snippets.

@jespr
Created November 18, 2011 14:31
Show Gist options
  • Save jespr/1376594 to your computer and use it in GitHub Desktop.
Save jespr/1376594 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Insert #{} when pressing #
{ "keys": ["#"], "command": "insert_snippet", "args": {"contents": "#{$0}"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^(\"$)", "match_all": true }
]
},
{ "keys": ["#"], "command": "insert_snippet", "args": {"contents": "#{${0:$SELECTION}}"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment