Shortcut for Copy/Paste not work in VSCode

Viewed 3058

Now I'm using the latest Visual Studio Code on Ubuntu 20.04 and face the problem with the Copy/Paste shortcut. When I use Ctrl+C, it is not Copy the chosen code to the clipboard, it has been changed to Insert mode instead. And I even not be able to use Ctrl+X and Ctrl+V. I have tried to reinstall the program but the problem still there. With other IDE, it still works normally. So, please help to fix this problem!

3 Answers

look at

File -> Preferences -> Keyboard Shortcut

Or

Press Ctrl+k Ctrl+s

enter image description here

Uninstall vim in extension of vs code.

  1. Go to extension of vs code
  2. You see a list of extension you have installed in vs. You should scroll through for vim extension.
  3. click on vim extension.
  4. click on uninstall.

Hope this solves your problem

Related