We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbddc9e commit 704e99dCopy full SHA for 704e99d
editor/editor_settings.cpp
@@ -1168,7 +1168,7 @@ String EditorSettings::_guess_exec_args_for_extenal_editor(const String &p_path)
1168
if (editor.begins_with("rider")) {
1169
new_exec_flags = "{project} --line {line} {file}";
1170
} else if (editor == "subl" || editor == "sublime text" || editor == "sublime_text") {
1171
- new_exec_flags = "{project} {file}:{line}:{column}";
+ new_exec_flags = "{project} {file}:{line}:{col}";
1172
} else if (editor == "vim" || editor == "gvim") {
1173
new_exec_flags = "\"+call cursor({line}, {col})\" {file}";
1174
} else if (editor == "emacs") {
0 commit comments