todo

vim 模拟按键,ctrl-v,visual block mode不生效

up:2024-07-04 17:20:42 edit:2024-07-04 17:24:19 view:355

ctrl-v may be bound to "paste" by Windows Terminal, if you don't want to change configurations, you can simulate key presses by vim commands, such as the following:

:execute "normal \<c-v>"

Note that \ means Ctrl-V, and it is literally thease chars, no need to press ctrl key.



https://stackoverflow.com/a/78584291/2204107


not in sinaapp