iTerm2 配置文件作为“应用程序”

iTerm2 配置文件作为“应用程序”

我最近创建了一个可以自动打开 nvim 的配置文件,它运行良好。但是,是否可以将其导出到文件/应用程序,以便我可以通过双击/quicksilver/spotlight 直接打开 nvim?

答案1

适用于 iTerm 2.9/3 的 AppleScript

tell application "iTerm"
    activate
    tell (create window with profile "nvim")
    end tell
end tell

答案2

您可以制作一个 AppleScript 来实现这一点,并将其导出为应用程序。

AppleScript [来源]:

tell application "iTerm"
activate
tell (make new terminal)
    launch session "Your Profile Name"
end tell
end tell

要导出为应用程序 [来源]:

在 Applescript 编辑器中,文件->另存为,并选择文件格式为应用程序。

相关内容