1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Fix code completion for new getnode syntax

This commit is contained in:
Juan Linietsky
2017-01-08 03:01:52 -03:00
parent 8b912d1115
commit 8963ca3d17
4 changed files with 37 additions and 8 deletions

View File

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