I've set MacVim as my default text editor, and when I double click files it opens up a new window. Is there a way to set it to open up in a new tab instead?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

In the Preferences (under MacVim in the menubar) you can change the selection of the radio button "Open files from applications" from "in a new window" to "in the current window" and then select "with a tab for each file" from the drop-down menu below.

link|improve this answer
This doesn't work when using the mvim script from terminal, although the other answer by déo does. – devth Jul 13 '10 at 16:22
That's true, but to be fair, it isn't what the questioner asked for either. – Michael Dunn Jul 15 '10 at 10:58
feedback

You can also edit the mvim script and look for the opts definition. Change it to something like:

opts="--remote-tab"

or

opts="--remote-tab-silent"

or

opts="--remote-tab-wait"

Depending on your taste, of course... ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.