Skip to content

Instantly share code, notes, and snippets.

View brinthsanti's full-sized avatar
🏠
Working from home

Brinth KR brinthsanti

🏠
Working from home
View GitHub Profile
@brinthsanti
brinthsanti / keybinding
Last active January 24, 2021 08:18
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"
}