chasingboy / Xtools

Xtools 是一款 Sublime Text 插件,同时是一款简单的资产处理、命令行调用工具。
172 stars 8 forks source link

mac下如何调用iterm2 #15

Open Alluresec opened 2 weeks ago

Alluresec commented 2 weeks ago

师傅,mac下如何调用iterm2,而不是自带的终端啊

chasingboy commented 2 weeks ago

如果需要调用 iterm2,修改 utils.py 文件的247行代码,修改完成后,重启 Sublime Text

# 注释
# tell.app('Terminal','do script"{cmd}"'.format(cmd=cmd),background=True)

# 改为
tell.app('iTerm','set newWindow to (create window with default profile)\ntell current session of newWindow\nwrite text "{cmd}"\nend tell'.format(cmd=cmd))
image