From 0a347800e77f08f897ac529ed69081a8ededfaf3 Mon Sep 17 00:00:00 2001 From: Michael Conrad <5229492+michael-conrad@users.noreply.github.com> Date: Mon, 1 Aug 2022 20:07:23 -0400 Subject: [PATCH] Fix JetBrains Rider arguments in Using an external text editor (#6019) Adding the project folder to the exec args lets Rider open the project's folder as a project and still also open the specified file. This resolves an issue where if I open a file in a folder from Godot, the folder is treated by Rider incorrectly as the project root. --- tutorials/editor/external_editor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/editor/external_editor.rst b/tutorials/editor/external_editor.rst index 9d7157879..572a32f8b 100644 --- a/tutorials/editor/external_editor.rst +++ b/tutorials/editor/external_editor.rst @@ -37,7 +37,7 @@ Some example Exec Flags for various editors include: +---------------------+-----------------------------------------------------+ | Atom/Sublime Text | ``{file}:{line}`` | +---------------------+-----------------------------------------------------+ -| JetBrains Rider | ``--line {line} {file}`` | +| JetBrains Rider | ``{project} --line {line} {file}`` | +---------------------+-----------------------------------------------------+ | Visual Studio Code | ``{project} --goto {file}:{line}:{col}`` | +---------------------+-----------------------------------------------------+