diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-24 01:04:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-24 01:04:57 +0200 |
| commit | 3811fb919e2053ec47510b5e04649c8f818ebe12 (patch) | |
| tree | 034adb2bf6a3177dbc3fa36b19f0cbd2ef7f8750 /editor/code_editor.cpp | |
| parent | 819ef12d68548c8b50c99d2ce62413bafaa00d9c (diff) | |
| parent | a0f54cb95e3a0250df8ed6e6a54720c487034d97 (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.cpp | 1 |
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)); |