Add keyword code completion option

This commit is contained in:
Nolkaloid
2026-03-25 23:10:02 +01:00
parent 9273a6a9a0
commit 1d165e7ea9
11 changed files with 21 additions and 5 deletions
+3
View File
@@ -1101,6 +1101,9 @@ Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptLanguage::CodeCo
case ScriptLanguage::CODE_COMPLETION_KIND_FUNCTION:
tex = get_editor_theme_icon(SNAME("MemberMethod"));
break;
case ScriptLanguage::CODE_COMPLETION_KIND_KEYWORD:
tex = get_editor_theme_icon(SNAME("Keyword"));
break;
case ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT:
tex = get_editor_theme_icon(SNAME("BoxMesh"));
break;