Skip to content

Commit

Permalink
Merge pull request #61 from Jayatubi/master
Browse files Browse the repository at this point in the history
open ts link in rider, if it has been set as external editor
  • Loading branch information
zombieyang authored Sep 7, 2023
2 parents 6619550 + cb5d4bd commit 3362346
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ public static bool OpenFileInIDE(string filepath, int line, int column)
string arguments = null;
switch (editorName)
{
case "rider64":
arguments = CodeEditor.ParseArgument(
"$(ProjectPath) $(File):$(Line)",
filepath,
line,
column
);
break;
default:
case "Code": //vscode编辑器
arguments = CodeEditor.ParseArgument(
Expand Down

0 comments on commit 3362346

Please sign in to comment.