1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- :article_outdated: True
- .. _doc_external_editor:
- Using an external text editor
- ==============================
- This page explains how to code using an external text editor.
- Godot can be used with an external text editor, such as Sublime Text or Visual
- Studio Code. Browse to the relevant editor settings: ``Editor -> Editor Settings
- -> Text Editor -> External``
- .. image:: img/editor_settings.png
- There are two fields: the executable path and command-line flags. The flags
- allow you to integrate the editor with Godot, passing it the file path to open
- and other relevant arguments. Godot will replace the following placeholders in
- the flags string:
- +---------------------+-----------------------------------------------------+
- | Field in Exec Flags | Is replaced with |
- +=====================+=====================================================+
- | ``{project}`` | The absolute path to the project directory |
- +---------------------+-----------------------------------------------------+
- | ``{file}`` | The absolute path to the file |
- +---------------------+-----------------------------------------------------+
- | ``{col}`` | The column number of the error |
- +---------------------+-----------------------------------------------------+
- | ``{line}`` | The line number of the error |
- +---------------------+-----------------------------------------------------+
- Some example Exec Flags for various editors include:
- +---------------------+-----------------------------------------------------+
- | Editor | Exec Flags |
- +=====================+=====================================================+
- | Geany/Kate | ``{file} --line {line} --column {col}`` |
- +---------------------+-----------------------------------------------------+
- | Atom | ``{file}:{line}`` |
- +---------------------+-----------------------------------------------------+
- | JetBrains Rider | ``{project} --line {line} {file}`` |
- +---------------------+-----------------------------------------------------+
- | Visual Studio Code | ``{project} --goto {file}:{line}:{col}`` |
- +---------------------+-----------------------------------------------------+
- | Vim (gVim) | ``"+call cursor({line}, {col})" {file}`` |
- +---------------------+-----------------------------------------------------+
- | Emacs | ``emacs +{line}:{col} {file}`` |
- +---------------------+-----------------------------------------------------+
- | Sublime Text | ``{project} {file}:{line}:{column}`` |
- +---------------------+-----------------------------------------------------+
- .. note:: For Visual Studio Code on Windows, you will have to point to the ``code.cmd``
- file. For Emacs, you can call ``emacsclient`` instead of ``emacs`` if
- you use the server mode.
- Using External Editor in Debugger
- ---------------------------------
- Using external editor in debugger is determined by a separate option in settings.
- For details see :ref:`Script editor debug tools and options <doc_debugger_tools_and_options>`.
- Official editor plugins
- -----------------------
- We have official plugins for the following code editors:
- - `Visual Studio Code <https://github.com/godotengine/godot-vscode-plugin>`_
- - `Emacs <https://github.com/godotengine/emacs-gdscript-mode>`_
|