From c22d486745300e2819df88998ab6885a41796093 Mon Sep 17 00:00:00 2001 From: Pouryafard75 Date: Tue, 28 May 2024 19:17:59 -0400 Subject: [PATCH] ASTDiff: (GUI) Enable word-wrap for monaco-editor by default Fixes https://github.com/tsantalis/RefactoringMiner/issues/727 --- src/main/resources/web/dist/monaco.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/web/dist/monaco.js b/src/main/resources/web/dist/monaco.js index ef1be7134..a6d48e868 100644 --- a/src/main/resources/web/dist/monaco.js +++ b/src/main/resources/web/dist/monaco.js @@ -30,6 +30,7 @@ function getEditorOptions(text) { minimap: { enabled: false, }, + wordWrap: 'on' // Enables word wrap }; }