Skip to content

Commit b9e07ac

Browse files
committed
Merge pull request godotengine#105442 from Calinou/editor-external-flags-fix-sublime-text
Fix Sublime text external editor Exec Flags setting
2 parents 16eb489 + 704e99d commit b9e07ac

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
@@ -1183,7 +1183,7 @@ String EditorSettings::_guess_exec_args_for_extenal_editor(const String &p_path)
11831183
if (editor.begins_with("rider")) {
11841184
new_exec_flags = "{project} --line {line} {file}";
11851185
} else if (editor == "subl" || editor == "sublime text" || editor == "sublime_text") {
1186-
new_exec_flags = "{project} {file}:{line}:{column}";
1186+
new_exec_flags = "{project} {file}:{line}:{col}";
11871187
} else if (editor == "vim" || editor == "gvim") {
11881188
new_exec_flags = "\"+call cursor({line}, {col})\" {file}";
11891189
} else if (editor == "emacs") {

0 commit comments

Comments
 (0)