From 52dcd80505b04b4672394e3ed31abe77e0905c4d Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Tue, 14 May 2024 15:49:19 +0200 Subject: [PATCH] use advanced wrapping strategy #21 --- client/src/Editor.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/Editor.tsx b/client/src/Editor.tsx index 61f3af8e..7eea82c6 100644 --- a/client/src/Editor.tsx +++ b/client/src/Editor.tsx @@ -88,6 +88,7 @@ const Editor: React.FC<{setRestart?, onDidChangeContent?, value: string, theme: theme: 'vs', wordWrap: config.wordWrap ? "on" : "off", fontFamily: "JuliaMono", + wrappingStrategy: "advanced" }) setEditor(editor) const abbrevRewriter = new AbbreviationRewriter(new AbbreviationProvider(), model, editor)