fre*_*ura 4 vim command mode key-bindings
我的系统保留了 Ctrl + V 供剪贴板使用,因此我无法使用该按钮组合访问 Vim 的可视模式。:VisualBlockModeEnable您知道切换此视图的命令是什么或类似的命令吗?
我也想更改我的绑定~/.vimrc
谢谢
:execute "normal! \<C-v>"
Run Code Online (Sandbox Code Playgroud)
这将进入视觉块模式。要重新映射它,请使用:
:nnoremap X <c-v>
Run Code Online (Sandbox Code Playgroud)