Skip to content

Commit

Permalink
Remove minimap from VS code (#4784)
Browse files Browse the repository at this point in the history
  • Loading branch information
liady authored Jan 23, 2024
1 parent 3e3012a commit 8ab79f3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions vscode-build/vscode.patch
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,19 @@ index 534fe232636..b41446430f0 100644
+ create(document.body, config)
+})()
\ No newline at end of file
diff --git a/src/vs/editor/common/config/editorOptions.ts b/src/vs/editor/common/config/editorOptions.ts
index 7d8189c50be..125b6c89d0b 100644
--- a/src/vs/editor/common/config/editorOptions.ts
+++ b/src/vs/editor/common/config/editorOptions.ts
@@ -2560,7 +2560,7 @@ class EditorMinimap extends BaseEditorOption<EditorOption.minimap, EditorMinimap

constructor() {
const defaults: EditorMinimapOptions = {
- enabled: true,
+ enabled: false,
size: 'proportional',
side: 'right',
showSlider: 'mouseover',
diff --git a/src/vs/workbench/browser/layout.ts b/src/vs/workbench/browser/layout.ts
index 6b59c1e9faa..a9192e938ef 100644
--- a/src/vs/workbench/browser/layout.ts
Expand Down

0 comments on commit 8ab79f3

Please sign in to comment.