Merge pull request #61814 from Calinou/script-editor-decrease-idle-parse-delay
Decrease the default idle parse delay in the script editor
This commit is contained in:
commit
8f0379730b
1 changed files with 1 additions and 1 deletions
|
@ -662,7 +662,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
|
||||||
_initial_set("text_editor/script_list/sort_members_outline_alphabetically", false);
|
_initial_set("text_editor/script_list/sort_members_outline_alphabetically", false);
|
||||||
|
|
||||||
// Completion
|
// Completion
|
||||||
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "text_editor/completion/idle_parse_delay", 2.0, "0.1,10,0.01")
|
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "text_editor/completion/idle_parse_delay", 1.5, "0.1,10,0.01")
|
||||||
_initial_set("text_editor/completion/auto_brace_complete", true);
|
_initial_set("text_editor/completion/auto_brace_complete", true);
|
||||||
_initial_set("text_editor/completion/code_complete_enabled", true);
|
_initial_set("text_editor/completion/code_complete_enabled", true);
|
||||||
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "text_editor/completion/code_complete_delay", 0.3, "0.01,5,0.01,or_greater")
|
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "text_editor/completion/code_complete_delay", 0.3, "0.01,5,0.01,or_greater")
|
||||||
|
|
Loading…
Reference in a new issue