Search code examples
visual-studio-code

When trying to use turbo console log , variable gets replaced by character


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. enter image description here

Now when I am trying to use by selecting the word and then press ctrl+alt+L,

the variable replaced by ̥

enter image description here

Did anyone face similar issue??

Edit:

Command Palette enter image description here


Solution

  • 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"
        },
    

    My console right now: enter image description here