Skip to content

Instantly share code, notes, and snippets.

@aziaziazi
Forked from harthur/snippet.md
Last active December 11, 2016 20:23
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 aziaziazi/67bc5e249bc2fe5559e54e76c53453b9 to your computer and use it in GitHub Desktop.
Save aziaziazi/67bc5e249bc2fe5559e54e76c53453b9 to your computer and use it in GitHub Desktop.
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 => ',${1:}$SELECTION);${0}"
      }
    }
]

Inserts a console.log('CURSOR => ',CURSOR) at the current cursor position, tab once to jump past.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment