我试图弄清楚 TextMate 中是否有一种方法可以将我正在输入的代码发送到 TextEdit。
也许可以使用 AppleScript 之类的东西,您有什么想法吗?谢谢。
答案1
这确实很丑,但是却能用。要求:
- TextMate 和 TextEdit 都需要运行
- 两者都需要前面打开一个文档
它的作用只是选择全部、复制并粘贴到 TextEdit 窗口。
tell application "TextMate"
activate
tell application "System Events"
keystroke "a" using {command down}
keystroke "c" using {command down}
end tell
end tell
tell application "TextEdit"
activate
tell application "System Events"
keystroke "a" using {command down}
keystroke "v" using {command down}
end tell
end tell