Использование стороннего текстового редактора

На этой странице объясняется, как писать код с помощью внешнего текстового редактора.

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

../../_images/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:

Поле в Исполняемых Флагах

Заменяется на

{project}

Абсолютный путь к каталогу проекта

{file}

Абсолютный путь к файлу

{col}

Номер столбца ошибки

{line}

Номер строки ошибки

Некоторые примеры Исполняемых Флагов для различных редакторов:

Редактор

Флаги исполнения

Gеany/Kate

{file} --line {line} --column {col}

Atom/Sublimе Text

{file}:{line}

JetBrains rider

{project} --line {line} {file}

Visuаl Studio Code

{project} --goto {file}:{line}:{col}

Vim (gVim)

"+call cursor({line}, {col})" {file}

Emаcs

emacs +{line}:{col} {file}

Примечание

For Visual Studio Code, 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.

Official editor plugins

У нас есть официальные плагины для следующих редакторов кода: