我已经看到了在Vim中使用选项卡(使用:table,:tabnew等)的能力,以取代我目前在隐藏缓冲区的同一个窗口中打开多个文件的做法。

我想每个不同的文件,我已经打开,总是在自己的选项卡。然而,有一些事情阻碍了这一点。我如何解决这些问题:

When commands like gf and ^] jump to a location in another file, the file opens in a new buffer in the current tab. Is there a way to have all of these sorts of commands open the file in a new tab, or switch to the existing tab with the file if it is already open? When switching buffers I can use :b <part of filename><tab> and it will complete the names of files in existing buffers. <part of filename> can even be the middle of a filename instead of the beginning. Is there an equivalent for switching tabs?


当前回答

相关: Vim:全局标记可以切换标签,而不是当前标签中的文件?

也许有助于解决OP的一小部分问题:

    nno \ <Cmd>call To_global_mark()<cr>
    fun! To_global_mark()
       -tab drop /tmp/useless.md
        exe 'normal! `' .. toupper(input("To global mark: "))
    endf

其他回答

看着 :帮助选项卡 看起来vim并不想以您的方式工作……

缓冲区是跨选项卡共享的,因此似乎不可能将给定的缓冲区锁定为只出现在某个选项卡上。

不过,这是个好主意。

通过使用支持选项卡的终端(如multi-gnome-terminal),然后在每个终端选项卡中运行vim实例,您可能会得到想要的效果。不过,这并不完美……

You can map commands that normally manipulate buffers to manipulate tabs, as I've done with gf in my .vimrc: map gf :tabe <cfile><CR> I'm sure you can do the same with [^ I don't think vim supports this for tabs (yet). I use gt and gT to move to the next and previous tabs, respectively. You can also use Ngt, where N is the tab number. One peeve I have is that, by default, the tab number is not displayed in the tab line. To fix this, I put a couple functions at the end of my .vimrc file (I didn't paste here because it's long and didn't format correctly).

这是给那些不熟悉Vim和来自其他文本编辑器的人的答案(在我的例子中是Sublime text)。

我把所有的答案都看了一遍,还是不明白。如果你读得足够多,事情就开始有意义了,但我花了几个小时来来回回地回答问题。

首先,正如其他人解释的那样:

标签页,听起来很像标签页,它们的行为和外观很像大多数其他GUI编辑器中的标签页,但它们不是。我认为这是建立在Vim上的一个糟糕的思维模型,不幸的是,它掩盖了你在标签页中拥有的额外功能。

我从@crenate的回答中了解到的第一个描述是,它们相当于多个桌面。从这方面来看,你只打开了几个桌面,但每个桌面中都打开了许多GUI窗口。

我想说的是,它们类似于其他编辑器/浏览器:

选项卡组 Sublime Text工作区(即项目中打开文件的列表)

当你看到它们时,你会意识到它们的力量,你可以很容易地将文件(缓冲区)组在一起,例如你的CSS文件,你的HTML文件和你的JS文件在不同的标签页。这实际上是非常棒的。

其他让我感到困惑的描述

视窗

这对我来说毫无意义。虽然它确实有一个定义的字典术语,但我只在:help窗口文档中听到它指的是Vim窗口。Viewport这个词我从来没听过关于Sublime Text、Visual Studio、Atom、notepad++等编辑器的说法。事实上,在我开始尝试使用标签页之前,我从来没有听说过Vim。

如果您像查看多个桌面一样查看选项卡页,那么将一个桌面称为单个窗口似乎很奇怪。

工作区

这可能更有意义,字典的定义是:

临时使用的存储设备。

它就像一个存储一组缓冲区的地方。

我最初听起来不像Sublime Text的工作空间概念,它是你在项目中打开的所有文件的列表:

sublime-workspace文件,其中包含特定于用户的数据,比如打开的文件和对每个文件的修改。

然而,仔细想想,这确实是一致的。如果你把Vim标签页看作一个Sublime Text项目,那么在每个项目中只打开一个文件并在项目之间不断切换似乎很奇怪。因此,为什么使用标签页只打开一个文件是奇怪的。

窗口集合

帮助窗口以这种方式引用页签。还有许多其他的答案使用相同的概念。然而,在您了解vim窗口是什么之前,它并没有多大用处,就像在沙子上建造城堡一样。

正如我上面提到的,一个vim窗口和一个视口是一样的,在这篇linux.com的文章中有很好的解释:

A really useful feature in Vim is the ability to split the viewable area between one or more files, or just to split the window to view two bits of the same file more easily. The Vim documentation refers to this as a viewport or window, interchangeably. You may already be familiar with this feature if you've ever used Vim's help feature by using :help topic or pressing the F1 key. When you enter help, Vim splits the viewport and opens the help documentation in the top viewport, leaving your document open in the bottom viewport.

我发现标签页被称为窗口的集合而不是缓冲区的集合是很奇怪的。但我猜你可以有两个单独的标签页打开每个指向同一个缓冲区的多个窗口,至少这是我目前为止的理解。

有点晚了,但很惊讶我没有在这个列表中看到以下内容:

:tab sball -这将为每个打开的缓冲区打开一个新标签。

:help switchbuf -控制缓冲区切换行为,尝试:set switchbuf=usetab,newtab。这应该意味着如果缓冲区打开,则切换到现有选项卡,如果没有打开则创建一个新选项卡。

我也遇到了同样的问题。我希望制表符像缓冲区一样工作,但我从来没有设法让它们。我最终决定的解决方案是使缓冲区的行为像制表符!

查看名为Mini Buffer Explorer的插件,一旦安装和配置,您将能够以与选项卡几乎相同的方式使用缓冲区,而不会丢失任何功能。