When using Windows Terminal, it was found that ctrl v conflicts with the column operation shortcut of vim.
Solutions
Modify the configuration file.
Click on “Down arrow” - “Settings” and select Notepad to open the JSON format configuration file.
Find this configuration.
// Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json.
// These two lines additionally bind them to Ctrl+C and Ctrl+V.
// To learn more about selection, visit https://aka.ms/terminal-selection
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" },
{ "command": "paste", "keys": "ctrl+v" },
Comment the ctrl v line.
// { "command": "paste", "keys": "ctrl+v" },
Just save.
Copy/paste shortcut
It turns out that Ctrl+Shift+C and Ctrl+Shift+V are the default copy/paste shortcuts in Windows Terminal by default.