From a68295f77f76c3577fef43cfd3e2ae23bcbdc62e Mon Sep 17 00:00:00 2001 From: Jakub Arnold Date: Sat, 20 Apr 2019 18:35:56 +0200 Subject: [PATCH] Add vim/gvim to a list of external editor flags Sidenote: Even though the flags work both for vim and gvim, it probably makes more sense to use gvim, because the way Godot launches the editor won't work with normal vim since it doens't have a terminal to live in. --- getting_started/editor/external_editor.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/getting_started/editor/external_editor.rst b/getting_started/editor/external_editor.rst index 868d6a8fb..a98b1e121 100644 --- a/getting_started/editor/external_editor.rst +++ b/getting_started/editor/external_editor.rst @@ -37,5 +37,7 @@ Some example Exec Flags for various editors include: +---------------------+-----------------------------------------------------+ | Visual Studio Code | {project} -\-goto {file}:{line}:{col} | +---------------------+-----------------------------------------------------+ +| Vim (gVim) | "+call cursor({line}, {col})" {file} | ++---------------------+-----------------------------------------------------+ .. note:: For Visual Studio Code you will have to point to the "code.cmd" file.