Last active
January 20, 2023 10:13
-
-
Save sp90/cac2d4047be2f0b9d41d392aec1bfee8 to your computer and use it in GitHub Desktop.
VScode snippet so when you write log and hit "tab" then you get a console log with multiple cursors
This file contains hidden or 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
{ | |
"Print to console": { | |
"prefix": "log", | |
"body": ["console.log('$1: ', $1);", "$2"], | |
"description": "Log output to console" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment