.vimrc文件配置:无论是否在插入模式下,游标看起来都一样

时间:2013-06-07 16:39:18

标签: vim

快速阅读.vimrc文件后,我抓住了here,我无法找到使插入和非插入模式下光标显示相同的行。请指出使这种情况发生的线路。

更新(6.10.13):我正在使用Fedora 17和xTerm。

1 个答案:

答案 0 :(得分:1)

如果您使用的是Gnome终端,则可以使用以下命令根据需要更改光标:

au InsertEnter * silent execute "!gconftool-2 --type string --set /apps/gnome-terminal/profiles/Default/cursor_shape ibeam"    
au InsertLeave * silent execute "!gconftool-2 --type string --set /apps/gnome-terminal/profiles/Default/cursor_shape block"

当您进入插入模式时,上面将光标设置为条形,并在退出时将其更改为块。

如果您有其他终端,请在此处查看此指南:http://vim.wikia.com/wiki/Configuring_the_cursor

注意:除了显示其位置之外,示例.vimrc文件似乎对光标没有任何作用。