From a0dbbfd6aae2709572e6f67d7ec7807ae07cac9f Mon Sep 17 00:00:00 2001 From: sitandr <60141933+sitandr@users.noreply.github.com> Date: Thu, 25 May 2023 08:12:42 +0300 Subject: [PATCH] feat: tweak default editor settings (#20) --- src/components/Editor.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Editor.svelte b/src/components/Editor.svelte index 105e59a..c1175fd 100644 --- a/src/components/Editor.svelte +++ b/src/components/Editor.svelte @@ -56,7 +56,9 @@ automaticLayout: true, readOnly: true, folding: true, - quickSuggestions: false + quickSuggestions: false, + wordWrap: "on", + unicodeHighlight: { ambiguousCharacters: false }, }); editor.onDidChangeModel((e: IModelChangedEvent) => {