Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove minimap from VS code #4784

Merged
merged 4 commits into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading