Skip to content

Instantly share code, notes, and snippets.

@fedesoria
Created December 12, 2013 20:30
Show Gist options
  • Save fedesoria/7934902 to your computer and use it in GitHub Desktop.
Save fedesoria/7934902 to your computer and use it in GitHub Desktop.
Sublime Text - User Text Bindings
[
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+."], "command": "gitx_open" },
{ "keys": ["ctrl+shift+."], "command": "erb" },
{"keys": ["super+shift+t"], "command": "reopen_last_file"},
{
"args": {
"contents": "% $0 %>"
},
"command": "insert_snippet",
"context": [
{
"key": "selector",
"match_all": true,
"operand": "source.ruby",
"operator": "equal"
},
{ "key": "preceding_text", "operator": "regex_match", "operand": ".*<", "match_all": true }
],
"keys": [
"%"
]
},
{
"keys": ["ctrl+super+r"],
"command": "reveal_in_side_bar"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment