Browse Source

Add Visual Studio exec flags (#9086)

* Add Visual Studio exec flags
Makarov Alexandr 7 months ago
parent
commit
f167d485df
1 changed files with 5 additions and 0 deletions
  1. 5 0
      tutorials/editor/external_editor.rst

+ 5 - 0
tutorials/editor/external_editor.rst

@@ -56,6 +56,8 @@ Some example **Exec Flags** for various editors include:
 +---------------------+-----------------------------------------------------+
 +---------------------+-----------------------------------------------------+
 | Sublime Text        | ``{project} {file}:{line}:{column}``                |
 | Sublime Text        | ``{project} {file}:{line}:{column}``                |
 +---------------------+-----------------------------------------------------+
 +---------------------+-----------------------------------------------------+
+| Visual Studio       | ``/edit "file"``                                    |
++---------------------+-----------------------------------------------------+
 
 
 .. note::
 .. note::
 
 
@@ -65,6 +67,9 @@ Some example **Exec Flags** for various editors include:
     For Emacs, you can call ``emacsclient`` instead of ``emacs`` if
     For Emacs, you can call ``emacsclient`` instead of ``emacs`` if
     you use the server mode.
     you use the server mode.
 
 
+    For Visual Studio, you will have to open the solution file ``.sln``
+    manually to get access to the IDE features. Additionally, it will not go to a specific line.
+
 Automatically reloading your changes
 Automatically reloading your changes
 ------------------------------------
 ------------------------------------
 To have the Godot Editor automatically reload any script that has been changed by an external text editor,
 To have the Godot Editor automatically reload any script that has been changed by an external text editor,