Skip to content

Instantly share code, notes, and snippets.

@copperfox777
Created May 21, 2020 08:52
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 copperfox777/39720d38f0e4e1e72c15534b24d2d437 to your computer and use it in GitHub Desktop.
Save copperfox777/39720d38f0e4e1e72c15534b24d2d437 to your computer and use it in GitHub Desktop.
Visual Studio Code console.log variable under the cursor
"macros": {
"logCurrentVariable": [
"editor.action.addSelectionToNextFindMatch",
"problems.action.copy",
"editor.action.clipboardCopyAction",
{
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": "console.log('$CLIPBOARD', $CLIPBOARD)$0"
}
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment