Skip to content

Commit 17dea24

Browse files
Disable terminal breadcrumbs by default (#38806)
<img width="1211" height="238" alt="image" src="https://github.com/user-attachments/assets/d847fabe-0e00-474c-ad79-cb4da221b319" /> At least on Windows, "git terminal" and PowerShell set the header, which is not very useful but occupies space and sometimes confuses users: ![telegram-cloud-photo-size-2-5377720447174575846-x](https://github.com/user-attachments/assets/a889fa44-e879-4b3d-956b-0af959113e1e) Release Notes: - Disable terminal breadcrumbs by default. Set `terminal.toolbar.breadcrumbs` to `true` to re-enable. Co-authored-by: Finn Evers <[email protected]>
1 parent 17e55da commit 17dea24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

assets/settings/default.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@
14321432
//
14331433
// The shell running in the terminal needs to be configured to emit the title.
14341434
// Example: `echo -e "\e]2;New Title\007";`
1435-
"breadcrumbs": true
1435+
"breadcrumbs": false
14361436
},
14371437
// Scrollbar-related settings
14381438
"scrollbar": {

docs/src/configuring-zed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3520,7 +3520,7 @@ List of `integer` column numbers
35203520
"button": true,
35213521
"shell": "system",
35223522
"toolbar": {
3523-
"breadcrumbs": true
3523+
"breadcrumbs": false
35243524
},
35253525
"working_directory": "current_project_directory",
35263526
"scrollbar": {
@@ -3941,7 +3941,7 @@ Disable with:
39413941
{
39423942
"terminal": {
39433943
"toolbar": {
3944-
"breadcrumbs": true
3944+
"breadcrumbs": false
39453945
}
39463946
}
39473947
}

0 commit comments

Comments
 (0)