I use javascript snippet with key binding.
so I have this code below
{
"key": "alt+c",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": " const $TM_CURRENT_WORD = $1"
}
},
so if I type "box" and than press "alt+c", It give...
box const box =
But I expected
const box =
So,How can I achieve that ?