diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-08 03:01:52 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-08 03:01:52 -0300 |
commit | 8963ca3d17ff6e1340cb5c2eb88a6485ec422a64 (patch) | |
tree | 9154c469e1f0a33dc34ae0f4ed49b36b49cfdbf9 /tools/editor/code_editor.cpp | |
parent | 8b912d11152410302f45eaa117c19b7016d781f5 (diff) |
Fix code completion for new getnode syntax
Diffstat (limited to 'tools/editor/code_editor.cpp')
-rw-r--r-- | tools/editor/code_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 284d589ba7..9c7626d79e 100644 --- a/tools/editor/code_editor.cpp +++ b/tools/editor/code_editor.cpp @@ -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"); |