浏览代码

Add Visual Studio exec flags (#9086)

* Add Visual Studio exec flags
Makarov Alexandr 6 月之前
父节点
当前提交
f167d485df
共有 1 个文件被更改,包括 5 次插入0 次删除
  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,