开发者

Vim: Is vertical tab list possible?

开发者 https://www.devze.com 2023-02-03 04:30 出处:网络
Is it possible to have vim\'s tab list presented vertically on the left side of the editor? It\'d be really helpful, but I haven\'t managed find any plugins that can do t开发者_运维知识库his yet. (

Is it possible to have vim's tab list presented vertically on the left side of the editor?

Vim: Is vertical tab list possible?

It'd be really helpful, but I haven't managed find any plugins that can do t开发者_运维知识库his yet. (do i suck at google?)


I would agree with Randy about the use of tabs. But I also looked for the possibility to have vertical tabs in gvim some time ago. To do this you have to modify the sources. For gvim, it's not too much work since the gtk_notebook widget is used for the tabs. For vim, it might be quite some more work. You can find the patch/hack I've made here. I commented some stuff regarding the height of the window, and added a hbox and a vbox to put the gui.tabline where I wanted it (on the left side). I set the label length to a maximum width to set a maximum tab size... It fits my needs but it really is just a hack and doesn't intent to be nicely programmed.

I'm sorry, it's not a plugin and it does not apply to vim, but if you really need this feature, switching to gvim might not be too much of a difference.


It seems to me as though you are using tabs as buffers. I'd politely ask that you take a second to read this answer if that is indeed the case. I'd also strongly urge you to change this habit.

However, if you are indeed using tabs for this purpose you could potentially get a 'vertical tab list' by issuing :ls to list the buffers. You could also use one of the many buffer explorer plugins that are available.


If using Gvim, then you could tearoff the Buffers menu using :te Buffers and position it as a sidebar.

Not the same as tabs but could suffice as a user interface workaround.


Did you try buffergator? After you install it it has a command :BuffergatorTabsOpen that shows the open tabs in a vertical window...


You don't know it yet, but command you're looking for is :tabs.

For context: I use gvim --remote-tab almost exclusively to launch an editor. I tried Randy's :ls for a bit, but after leaving gvim open for a week or two, the list eventually got filled with cruft from tabs that I had already :quit. After reading the manual, I found :tabs.

0

精彩评论

暂无评论...
验证码 换一张
取 消