Skip to content

Instantly share code, notes, and snippets.

@paddyobrien
Created June 19, 2012 08:28
Show Gist options
  • Save paddyobrien/2953015 to your computer and use it in GitHub Desktop.
Save paddyobrien/2953015 to your computer and use it in GitHub Desktop.
Sublime debug
[{
"keys": ["super+shift+l"],
"command": "insert_snippet",
"args": {
"contents": "console.log(${1:}$SELECTION);${0}"
}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.js", "match_all": true }
]
},
{ "keys": ["super+shift+l"],
"command": "insert_snippet",
"args": {
"contents": "var_dump(${1:}$SELECTION);${0}"
}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.php", "match_all": true }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment