我已经通过brew install macvim
安装了macvim,并在首选项中启用了“每个文件的选项卡”选项,但我获得的选项卡是VIM样式选项卡。不是您在macvim主页上看到的操作系统标签:http://code.google.com/p/macvim/。请参阅下面的截图。
我有什么办法可以获得操作系统标签吗?
答案 0 :(得分:17)
尝试执行set guioptions+=e
。这应该可以解决你的问题。
来自help guioptions
:
'e' Add tab pages when indicated with 'showtabline'.
'guitablabel' can be used to change the text in the labels.
When 'e' is missing a non-GUI tab pages line may be used.
The GUI tabs are only supported on some systems, currently
GTK, Motif, Mac OS/X and MS-Windows.
要查看guioptions
的当前值,请执行:set guioptions?
您的.vimrc
很可能是从e
移除了guioptions
。这是我的guioptions
以您想要的方式运作:guioptions=gtrLme
答案 1 :(得分:2)
始终显示标签栏的其他选项。
添加到vimrc:
set showtabline=2
来自vim_mac邮件列表档案。 https://groups.google.com/forum/#!searchin/vim_mac/showtab/vim_mac/zvw9MQYhnsg/jDNsqgDsHQ4J