如何在终端上打开新文件到选项卡而不是MacVim上的新窗口?

时间:2012-02-01 18:07:30

标签: vim macvim

我已将mvim移至/usr/local/bin,因此,如果我输入mvim file.html,则会从终端移动,然后MacVim将在新窗口中打开并打开文件file.html

但如果我从终端打开另一个文件,那么它将打开另一个 MacVim窗口。

是否可以在MacVim上将新文件作为新标签打开?

我目前将MacVim设置为

Open files from application: in the current window
    with a tab for each file

但是,只有当我从MacVim打开文件(不从终端运行mvim)时,才会在新选项卡中打开新文件。

1 个答案:

答案 0 :(得分:6)

This hack应该有效,但每次更新MacVim时都要保持这种状态。它要求您编辑mvim脚本。这似乎是一个长期存在的问题。

mvim `which mvim`

## Add the following line to the top of the file, below the commented section:

tabs=true

## Replace the `if` structure at the bottom of the file with the following:

# Last step:  fire up vim.
if [ "$gui" ]; then
  if $tabs && [[ `$binary --serverlist` = "VIM" ]]; then
    exec "$binary" -g $opts --remote-tab-silent ${1:+"$@"}
  else
    exec "$binary" -g $opts ${1:+"$@"}
  fi
else
  exec "$binary" $opts ${1:+"$@"}
fi