Skip to content

Instantly share code, notes, and snippets.

View RadioactiveMouse's full-sized avatar

Tom Townsend RadioactiveMouse

View GitHub Profile
@RadioactiveMouse
RadioactiveMouse / snippet.md
Created June 19, 2012 08:25 — forked from harthur/snippet.md
console.log() key binding for Sublime Text

Go to Sublime Text 2 > Preferences > Key Bindings - User and add this JSON to the file:

[
    { "keys": ["super+shift+l"],
      "command": "insert_snippet",
      "args": {
        "contents": "console.log(${1:}$SELECTION);${0}"
      }
 }