Skip to content

Instantly share code, notes, and snippets.

@brinthsanti
Last active January 24, 2021 08:18
Show Gist options
  • Save brinthsanti/1e94d00a7b32b55e4ed4eacae7bf11cd to your computer and use it in GitHub Desktop.
Save brinthsanti/1e94d00a7b32b55e4ed4eacae7bf11cd to your computer and use it in GitHub Desktop.
console.log keyboard shortcut for vscode
// add this in keybindings.json of vscode
[
{
"key": "ctrl+l",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": "console.log($1)$0"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment