iTerm2 Python API 提供了 async_send_text,它接受一个字符串。我可以将“s”字符作为输入发送到当前会话,但我想知道如何模拟在键盘上按下“alt-s”。这是我到目前为止所拥有的:
#!/usr/bin/env python3.7
import iterm2
async def main(connection):
app = await iterm2.async_get_app(connection)
s = app.current_terminal_window.current_tab.current_session
await s.async_send_text('s')
iterm2.run_until_complete(main)
胡子哥哥
相关分类