Skip to content

Instantly share code, notes, and snippets.

@40thieves
Last active December 27, 2015 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 40thieves/7369991 to your computer and use it in GitHub Desktop.
Save 40thieves/7369991 to your computer and use it in GitHub Desktop.
My preferred Sublime Text keybindings
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{
"keys": ["ctrl+shift+l"],
"command": "insert_snippet",
"context": [{
"key": "selector",
"operator": "equal",
"operand": "source.js"
}],
"args": {
"contents": "console.log(${1:$SELECTION});"
}
},
{
"keys": ["ctrl+shift+l"],
"command": "insert_snippet",
"context": [{
"key": "selector",
"operator": "equal",
"operand": "source.php"
}],
"args": {
"contents": "Log::debug(print_r(${1:$SELECTION}, true));"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment