如何让macvim选项卡以图形方式显示?

时间:2012-08-29 12:14:27

标签: macos vim macvim

我已经通过brew install macvim安装了macvim,并在首选项中启用了“每个文件的选项卡”选项,但我获得的选项卡是VIM样式选项卡。不是您在macvim主页上看到的操作系统标签:http://code.google.com/p/macvim/。请参阅下面的截图。

我有什么办法可以获得操作系统标签吗?

Macvim screenshot

2 个答案:

答案 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