Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 MacVim 设置为我的默认文本编辑器,当我双击文件时,它会打开一个新窗口。有没有办法将其设置为在新选项卡中打开?
您还可以编辑mvim脚本并查找opts定义。将其更改为:
mvim
opts
opts="--remote-tab"
或者
opts="--remote-tab-silent"
opts="--remote-tab-wait"
当然,这取决于您的口味... ;-)
在首选项中(在菜单栏中的 MacVim 下),您可以将单选按钮“从应用程序打开文件”的选择从“在新窗口中”更改为“在当前窗口中”,然后选择“每个文件都有一个选项卡”从下面的下拉菜单中。