I am new in visual studio code. I was seeking for useful plugins for vs code and I found that Turbo Console Log is a good one.
Now after installing, inside settings.json, I did some changes,
"turboConsoleLog.wrapLogMessage":true,
"turboConsoleLog.insertEnclosingFunction":true,
"turboConsoleLog.includeFileNameAndLineNum":true,
Also I noticed that Turbo Console Log is there and ctrl+alt+L
is not have any conflicts with others.
Now when I am trying to use by selecting the word and then press ctrl+alt+L
,
the variable replaced by ̥
Did anyone face similar issue??
Edit:
Ok , By the help of this link I am able to override the settings, currently mine is, keybindings.json
{
"key": "ctrl+alt+2",
"command": "turboConsoleLog.displayLogMessage"
},
{
"key": "ctrl+alt+3",
"command": "turboConsoleLog.deleteAllLogMessages"
},
{
"key": "ctrl+alt+4",
"command": "turboConsoleLog.commentAllLogMessages"
},
{
"key": "ctrl+alt+6",
"command": "turboConsoleLog.uncommentAllLogMessages"
},