我想将 iTerm2 配置为我的 Mac(Mountain Lion 10.8.4)上的默认终端,这样当我右键单击文件夹并选择“文件夹中的新终端选项卡”时,它就会打开 iTerm。
我怎样才能做到这一点?
答案1
文件夹中的新终端选项卡服务由终端提供,因此不能与 iTerm 一起使用。不过,您可以为 iTerm 创建自己的服务:
on run {input, parameters}
set p to POSIX path of item 1 of input
tell application "iTerm"
reopen
tell current terminal
tell (launch session "Default Session")
write text "cd " & quoted form of p
end tell
end tell
activate
end tell
end run
据我所知,OS X 上没有默认终端。你可以.command
从 Finder 更改文件的默认应用程序,也可以使用杜蒂更改默认应用程序x-man-page
或ssh
URL。