From 800ce75e9d9ebcb8f06db464338dcd735eaf3ac3 Mon Sep 17 00:00:00 2001 From: Siddharth VP Date: Sun, 20 Oct 2024 01:43:08 +0530 Subject: [PATCH] Enable live autocompletion in CodeEditor Bug: T377663 Change-Id: Ie7589c9ae7397ba389ef66cce0c354df747d423b --- modules/jquery.codeEditor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/jquery.codeEditor.js b/modules/jquery.codeEditor.js index 5c0072f2..226c67c8 100644 --- a/modules/jquery.codeEditor.js +++ b/modules/jquery.codeEditor.js @@ -375,6 +375,7 @@ // The options to enable context.codeEditor.setOptions( { enableBasicAutocompletion: true, + enableLiveAutocompletion: true, enableSnippets: true, theme: inDarkMode ? 'ace/theme/monokai' : 'ace/theme/textmate' } );