Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion UnityExternalScriptEditorHelper/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ public static void Main(string[] args)
launchArguments = launchArguments.Replace("*line*", launchLine);

File.AppendAllText(logPath, "*****Launching*****"+Environment.NewLine);
File.AppendAllLines(logPath, new string[] {launchApplication, launchArguments});
File.AppendAllLines(logPath, new string[] {launchApplication, " ", launchArguments});

// Launch the app
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.FileName = launchApplication;
proc.StartInfo.Arguments = launchArguments;
proc.Start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<config>
<!-- The Following is For Windows -->
<application><![CDATA[C:\Program Files\Sublime Text 2\sublime_text.exe]]></application>
<!-- The Following is for OSX
<application><![CDATA["/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"]]></application>
<!-- The Following is for OSX
<application><![CDATA[/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl]]></application>
-->
<arguments><![CDATA["*file*":*line*]]></arguments>
</config>
Expand Down