我想在外部應用程序(例如MacVim)的當前選項卡中打開文檔。根據StackOverflow answer我創建了一個Automator的服務,下面的AppleScript代碼:XCode 5 - AppleScript - 如何在當前選項卡中獲取文檔
tell application "Xcode"
set current_document to last source document
set current_document_path to path of current_document
end tell
tell application "MacVim"
activate
open current_document_path
end tell
的問題是,它從第一選項卡中打開該文件,而不是從當前選項卡。我怎樣才能獲得當前標籤的路徑?