1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Reintroduce code completion

This commit is contained in:
George Marques
2020-07-06 12:24:24 -03:00
parent b6a2628c48
commit aa09b4f85d
9 changed files with 2903 additions and 30 deletions

View File

@@ -1778,6 +1778,7 @@ CodeTextEditor::CodeTextEditor() {
cs.push_back("(");
cs.push_back("=");
cs.push_back("$");
cs.push_back("@");
text_editor->set_completion(true, cs);
idle->connect("timeout", callable_mp(this, &CodeTextEditor::_text_changed_idle_timeout));