Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前使用 MacVim 来满足我的很多编辑器需求,但有时我需要通过 SSH 远程编辑文件。在 MacVim 中,光标的形状取决于您当前的模式,即 command mode -> block cursor和insert mode -> vertical bar cursor,我觉得这很有帮助。
command mode -> block cursor
insert mode -> vertical bar cursor
有没有办法在.vimrc文件中复制这种行为,以便可以远程使用?
.vimrc
试试:help termcap-cursor-shape。您可以设置两个选项:
:help termcap-cursor-shape
&t_SI
&t_EI
为了让它工作,你使用的 Vim 必须已经编译了+cursorshapefeature。
+cursorshape
我个人总是使用 gvim,所以这从来都不是问题:)。希望这可以帮助。
:)