जवाबों:
ITerm 2.9 / 3 के लिए AppleScript
tell application "iTerm"
activate
tell (create window with profile "nvim")
end tell
end tell
write text
काम करने लगता है, न ही करता है execute command
।
tell current session of current window write text "echo test;" end tell
एक जादू की तरह काम करता है। ITerm2 AppleScript परीक्षण स्रोतों से लिया गया। github.com/gnachman/iTerm2/blob/master/sources/...
आप एक AppleScript बना सकते हैं जो इसे पूरा करता है, और एक ऐप के रूप में निर्यात करता है।
AppleScript [ स्रोत ]:
tell application "iTerm"
activate
tell (make new terminal)
launch session "Your Profile Name"
end tell
end tell
अनुप्रयोग के रूप में निर्यात करने के लिए [ स्रोत ]:
Applescript संपादक में फ़ाइल- & gt; इस रूप में सहेजें और एप्लिकेशन के रूप में फ़ाइल स्वरूप चुनें।
error "The variable terminal is not defined." number -2753 from "terminal"
10.10 में Yosemite (iterm2 2.9) LOLOL
tell application "iTerm" activate create new window with profile "nvim" end tell
काम करता है