English 中文(简体)
使用带有标签列表插件的 gvim 标签标签
原标题:Using gvim tabs with taglist plugin

我一直在寻找使用带 gvim 的标签列表插件,但我遇到的一个难题是,它不能按我的意愿使用 gvim 标签。当用户开始标签列表时,它只出现在当前标签标签中;据我所知,当用户切换到一个尚未打开的标签时,它需要启动另一个标签列表。

我的问题是,是否有某种方法打开一个单一标签列表,每当用户切换到另一个标签时,该标签列表将更新为相应的缓冲,同时将相同的(但更新过的)标签列表留在窗口的侧面。

我所研究的另一个可能性是使用迷你缓冲探索器插件,该插件基本上与标签列表按我想的方式互动。然而,我更喜欢 gvim 标签的外观,并且一般认为,在某些诸如重新排序的事情上, gvim 标签比较灵活。因此,所有的话都说,虽然我最感兴趣的是配置标签列表与 gvim 标签的操作方式,但我也愿意考虑其他的可能性,如果它们允许更大的灵活性的话。

最佳回答

我用维他命标签多年, 忍受这样的问题, 然后尝试像 ctrlP 和 littley 这样的插件, 我尝试切换到缓冲, 读到: < a href="http://leonid. shevtsov. me/en/ why- vim- tabs-are- different- from- any- other- editor" rel= "nofollow" > http://leonid.shevtsov.me/en/ whis-vim-tabs-are- different-from- anyny- other-editor , 并完全将标签丢弃在维姆, 现在事情更有意义了。

(但不要使用小型缓冲探险家,这是邪恶的,欲望更好,并且用最近使用的方法自动重新排序)

问题回答

否。由于 Vim 的标签设计方式,您无法在标签上设置“em>real 持续窗口 ” 。

你可以黑进这种情形

autocmd VimEnter * TlistOpen

(但丑陋)或应付维姆不是 也不能成为编辑 / IDE 的事实 你曾经使用 多年 之前转换。





相关问题
Autoupdate VIM Plugins?

Is it possible to update vim plugins automatically?

how to unindent in vim without leaving edit mode?

I m writing a lot of python code recently, and i used the tab-to-space mode in vim. I was just wondering how would i unindent in vim without leaving edit mode for example after i finished if...: block....

Scrolling inside Vim in Mac s Terminal

I ve been googling around trying to figure out if it s possible to use my mouse wheel to scroll while inside Vim in Mac s Terminal, with no luck. It seems as if only X11 or iTerm support this. Before ...

Vim - Deleting XML Comments

How do I delete comments in XML? If the opening and the closing comment tags are on the same line, I use :g/^<!--.*-->$/d to delete the comment. How to delete the comments that are spread ...

Limiting a match in vim to certain filetypes?

I have the following in my .vimrc to highlight lines longer than 80 chars: highlight OverLength ctermbg=red ctermfg=white guibg=#592929 match OverLength /\%81v.*/ This works quite well. However, the ...

Profiling Vim startup time

I’ve got a lot of plugins enabled when using Vim – I have collected plugins over the years. I’m a bit fed up with how long Vim takes to start now, so I’d like to profile its startup and see which of ...

热门标签