Skip to content

Instantly share code, notes, and snippets.

@piotros
Last active September 7, 2016 14:33
Show Gist options
  • Save piotros/172b3e9d88e2a7534feac4aa4e0ee2bb to your computer and use it in GitHub Desktop.
Save piotros/172b3e9d88e2a7534feac4aa4e0ee2bb to your computer and use it in GitHub Desktop.
WebStorm Live Templates
Abbreviation Description Template text
cl Insert console.log console.log($PARAM$)$END$
clc Insert console.log with colors console.log('%cLOG: $NAME$', 'background: #222; color: $COLOR$', $NAME$)$END$
cls Insert console.log with colors and selected text added as parameter console.log('%cLOG: $SELECTION$', 'background: #222; color: $COLOR$', $SELECTION$)$END$
fun Inserts function expression function($PARAM$) { $END$ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment