1

好的 Unity3d 允许您在应用程序首选项中设置外部脚本编辑器。所以我想用applescript来启动我自己的编辑器。到目前为止,这个 applescript 对我来说效果很好,但我无法跳转到行号。

根据 Unity,“行号应该通过 AppleEvent 中的参数发送。它应该是 typeChar 和 keyAEPosition ('kpos') 通过此参数发送的结构具有以下布局:”

struct TheSelectionRange 
{
    short unused1; // 0 (not used)
    short lineNum; // line to select (<0 to specify range)
    long startRange; // start of selection range (if line < 0)
    long endRange; // end of selection range (if line < 0)
    long unused2; // 0 (not used)
    long theDate; // modification date/time
};

“lineNum 应该填充正确的行。其他字段不会填充 0 和 -1 以外的任何内容。”

那么为什么我没有看到任何这些来自我的输入呢?我如何捕捉这个苹果事件?

我的脚本:

on run input
    set element to item 1 of input
    if (element is in {{}, {""}, ""}) then
        return
    else
        tell application "System Events"
            set ProcessList to name of every process
            if "iTerm" is in ProcessList then
                set iterm_running to true
            else
                set iterm_running to false
            end if
            log iterm_running
        end tell
        tell application "iTerm"
            activate
            if (count terminal) < 1 then
                set term to (make new terminal)
            else
                set term to current terminal
            end if
            tell term
                set create_session to false
                try
                    do shell script ("/usr/local/bin/vim --servername UNITY --remote-send ''")
                    set create_session to false
                on error errorMessage number errorNumber
                    set create_session to true
                end try

                if iterm_running then
                    if create_session then
                        launch session "Default Session"
                        activate current session
                        tell current session
                            set name to "Unity"
                            write text "/usr/local/bin/vim --servername UNITY --remote-silent \"$(echo \"/Volumes/" & input & "\" | tr : /)\""
                        end tell
                    else
                        do shell script ("/usr/local/bin/vim --servername UNITY --remote-silent \"$(echo \"/Volumes/" & input & "\" | tr : /)\"")
                    end if
                else
                    activate current session
                    tell current session
                        set name to "Unity"
                        write text "/usr/local/bin/vim --servername UNITY --remote-silent \"$(echo \"/Volumes/" & input & "\" | tr : /)\""
                    end tell
                end if
            end tell
        end tell
    end if
    return input
end run
4

1 回答 1

0

如果您处理 open 事件,您应该会看到一些参数,包括行号:

on open (x,y)
  display dialog x
  display dialog y
  -- use x and y in your own script
end open
于 2013-07-08T15:52:10.933 回答