我刚开始在终端上使用R,因为它具有制表符功能。但是我不知道如何将TextMate中的选定文本发送到终端。专业知识可以告诉我如何在TextMate中编写Command吗?

谢谢!

最佳答案

这是我当前使用的确切的TextMate命令。希望能帮助到你!

rawText="$(cat | sed 's/ / /g;')"

osascript  -e 'on run(theCode)' \
           -e '  tell application "Terminal"' \
           -e '    do script theCode in window 1' \
           -e '  end tell' \
           -e 'end run' -- "$rawText"

open "txmt://open?line=$(($TM_LINE_NUMBER+1))&column=1000000" &

关于r - 如何将TextMate中的选定文本(或行)发送到在终端上运行的R,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9217155/

10-12 19:34