At present, I use Ctrl+V to paste from the system to vim more frequently, but there is a problem that column editing function is lost in normal mode. How to set Ctrl+V to paste from the system in insert mode and normal mode to edit columns? (although Ctrl+Q can be satisfied, want to know a similar setting method)
The solution you want
inoremap <C-V> <C-R>+However, this will automatically use autoindent to force indentation. A better solution is to temporarily turn off the paste option
Please refer to autoload/paste.vim for details.