Created
June 19, 2012 08:28
-
-
Save paddyobrien/2953015 to your computer and use it in GitHub Desktop.
Sublime debug
This file contains 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": ["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