Home > Back-end >  right click context menu in vs code executes immediately
right click context menu in vs code executes immediately

Time:12-17

When I right click in the editor, vs code executes whatever menu item the cursor happens to be over. It happens far too fast for me to make my actual choice known.

I have already spent 30 minutes trying to find a solution. If you search for "right click" in the Command Palette, you are told there are no matches. You don't get any hits in the docs, either. Please advise. Thank you.

CodePudding user response:

It has been reported that the situation you mentioned is a bug in the repository on GitHub. It is reported that Visual Studio Code works fine when zoom is disabled.

You can update the following setting to override this behavior:

"editor.mouseWheelZoom": false

Or you can update the mouseWheelZoom setting from the pop-up window by using the shortcut CTRL , to go to Settings.

  • Related