diff options
Diffstat (limited to 'web_src/js/features/codeeditor.js')
-rw-r--r-- | web_src/js/features/codeeditor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/codeeditor.js b/web_src/js/features/codeeditor.js index f6a50dc8b8..f533ea9d8f 100644 --- a/web_src/js/features/codeeditor.js +++ b/web_src/js/features/codeeditor.js @@ -6,11 +6,11 @@ const languagesByExt = {}; const baseOptions = { fontFamily: 'var(--fonts-monospace)', fontSize: 14, // https://github.com/microsoft/monaco-editor/issues/2242 + guides: {bracketPairs: false, indentation: false}, links: false, minimap: {enabled: false}, occurrencesHighlight: false, overviewRulerLanes: 0, - renderIndentGuides: false, renderLineHighlight: 'all', renderLineHighlightOnlyWhenFocus: true, renderWhitespace: 'none', |