commit def58d99303663fd182ea89db79ab00eb13dea2f
parent 9df3e3ac179cb059b72ab5c3b2ca4f6cf548afdb
Author: Hunter
Date:   Fri, 11 Jul 2025 16:21:02 -0400

discourage text autocorrect in editor pane

Diffstat:
Mindex.html | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/index.html b/index.html @@ -275,6 +275,13 @@ updateTimer = setTimeout(updatePreview, 750); saveToStorage(); } + }), + // Disable text correction and autocomplete + EditorView.contentAttributes.of({ + 'autocomplete': 'off', + 'autocorrect': 'off', + 'autocapitalize': 'off', + 'spellcheck': 'false' }) ] }),