외부 텍스트 에디터 사용하기

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

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

Exec Flags 필드

대체되는 문자열

{project}

프로젝트 디렉토리의 절대 경로

{file}

파일의 절대 경로

{col}

오류의 열 번호

{line}

오류의 행 번호

다양한 편집기의 Exec Flags의 예는 다음과 같습니다:

에디터

실행 플래그

Geany/Kate

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

Atom/Sublime Text

{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}

참고

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: