From 0e65bd05c49553140687c33109e87e679aef9d5c Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Sat, 27 Dec 2025 08:49:26 +0300 Subject: [PATCH] Disable word-based suggestions in editor config Updated the editor configuration in config.html to set wordBasedSuggestions to false and disable word suggestions in the suggestion widget. This change aims to refine the suggestion behavior for a more focused coding experience. --- www/config.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/config.html b/www/config.html index d541a780..df8edc91 100644 --- a/www/config.html +++ b/www/config.html @@ -129,6 +129,8 @@ insertSpaces: true, quickSuggestions: { other: true, comments: false, strings: true }, suggestOnTriggerCharacters: true, + wordBasedSuggestions: false, + suggest: { showWords: false }, scrollBeyondLastLine: false, });