在iterm2中拆分窗格后保持会话标题

时间:2017-05-10 02:49:48

标签: title prompt iterm2

我想为标签设置名称,但在iterm2中只有会话标题。

当我在选项卡中有一个拆分窗格时,它可以正常工作

set session titile

但是将标签拆分为两个窗格后,会话标题会发生变化。

after split

有没有办法在分割后写一个脚本来保存会话标题?

1 个答案:

答案 0 :(得分:1)

我按照AppleScript解决了这个问题:

tell application "iTerm"
    tell current session of current window
        set nameOfSession to {get name} as text
        set newSession to {split horizontally with same profile}
        select newSession
        set name to nameOfSession
    end tell
end tell

将其放到~/Library/Application Support/iTerm/Scripts,重新启动iterm2,然后您就可以在Script Menumore about scripts)中看到该脚本。

可能您想要映射快捷方式以在系统键盘快捷方式设置中执行脚本。