Chakroun-Anas / turbo-console-log

591 stars 141 forks source link

ctrl + alt +L does nothing #93

Closed abhedindulkar closed 3 years ago

abhedindulkar commented 4 years ago

It just removes the variable and gives a dot at the place and as we use ctrl+alt +L the dot goes below to the previous dot image

rohantarai commented 4 years ago

@abhedindulkar after installing this extension.

Fourie-r commented 4 years ago

I have the same problem, ctrl+alt+l does nothing for me as well, but I also dont have such file keybindings.json in this directory. The only json file there is settings.json.

rohantarai commented 4 years ago

@Fourie-r if there is no keybindings.json file then you can create one there.

alok722 commented 4 years ago

@abhedindulkar after installing this extension.

* Edit this file `C:\Users\<Username>\AppData\Roaming\Code\User\keybindings.json`

* Add these json values in `keybindings.json`
[
  {
    "key": "alt+shift+l",
    "command": "turboConsoleLog.displayLogMessage"
  },
  {
    "key": "alt+shift+d",
    "command": "turboConsoleLog.deleteAllLogMessages"
  },
  {
    "key": "alt+shift+c",
    "command": "turboConsoleLog.commentAllLogMessages"
  },
  {
    "key": "alt+shift+u",
    "command": "turboConsoleLog.uncommentAllLogMessages"
  }
]
* Save and It will start working

Now, it works... Thanks!