Home > Software engineering >  VS Code keyboard shortcut stopped working (seems to wait for further strokes)
VS Code keyboard shortcut stopped working (seems to wait for further strokes)

Time:08-30

I have the following keyboard shortcut configured: CMD L for Expand Line Selection:

enter image description here

This used to work without problem but seemingly from one moment to another it stopped working.

For example, when I am in an index.html file and I would expect to be able to select a line with that shortcut, nothing happens in the editor. However, in the VS Code enter image description here

It seems like instead of immediately "executing" the CMD L shortcut, VS Code waits for another shortcut to come?

CodePudding user response:

Pretty sure have seen this before, sound like an extension causing it! Maybe search for “@installed” in extensions and try to find the culprit!

From VSCode CLI, you can run the following command to list all extension

code --list-extensions

From VSCode GUI, you can go to the extensions tab and search for

@installed

Picture of VSCode Extensions Tab with @Installed in the Search Bar

  • Related