Uso de un editor de texto externo¶
Esta página explica como codificar usando un editor de texto externo.
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

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:
Campo en Exec Flags |
Es reemplazado por |
---|---|
{project} |
La ruta absoluta al directorio del proyecto |
{file} |
La ruta absoluta al archivo |
{col} |
El número de columna del error |
{line} |
El número de línea del error |
Algunos ejemplos de Exec Flags para varios editores incluyen:
Editor |
Exec Flags |
---|---|
Geany / Kate |
{file} --line {line} --column {col} |
Atom / Sublime Text |
{archivo}:{linea} |
JetBrains Rider |
|
Visual Studio Code |
{project} --goto {file}:{line}:{col} |
Vim (gVim) |
|
Emacs |
|
Nota
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¶
We have official plugins for the following code editors: