summaryrefslogtreecommitdiff
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-07-24 01:04:57 +0200
committerGitHub <noreply@github.com>2020-07-24 01:04:57 +0200
commit3811fb919e2053ec47510b5e04649c8f818ebe12 (patch)
tree034adb2bf6a3177dbc3fa36b19f0cbd2ef7f8750 /editor/code_editor.cpp
parent819ef12d68548c8b50c99d2ce62413bafaa00d9c (diff)
parenta0f54cb95e3a0250df8ed6e6a54720c487034d97 (diff)
Merge pull request #40598 from vnen/gdscript-2.0
GDScript 2.0 (again)
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index d8648310b6..9a87d6d38c 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -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));