Skip to content

Commit 704e99d

Browse files
committed
Fix Sublime text external editor Exec Flags setting
The placeholder must be `{col}`, not `{column}`.
1 parent dbddc9e commit 704e99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/editor_settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ String EditorSettings::_guess_exec_args_for_extenal_editor(const String &p_path)
11681168
if (editor.begins_with("rider")) {
11691169
new_exec_flags = "{project} --line {line} {file}";
11701170
} else if (editor == "subl" || editor == "sublime text" || editor == "sublime_text") {
1171-
new_exec_flags = "{project} {file}:{line}:{column}";
1171+
new_exec_flags = "{project} {file}:{line}:{col}";
11721172
} else if (editor == "vim" || editor == "gvim") {
11731173
new_exec_flags = "\"+call cursor({line}, {col})\" {file}";
11741174
} else if (editor == "emacs") {

0 commit comments

Comments
 (0)