-2

快速阅读我在此处.vimrc抓取的文件后,我找不到使光标在插入和非插入模式下都显示相同的行。请向我指出正在发生这种情况的行。

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

4

1 回答 1

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 文件除了显示它的位置之外似乎没有对光标做任何事情。

于 2013-06-07T20:46:54.863 回答