mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:  Release Notes: - Disable terminal breadcrumbs by default. Set `terminal.toolbar.breadcrumbs` to `true` to re-enable. Co-authored-by: Finn Evers <finn@zed.dev>
This commit is contained in:
parent
17e55daf6f
commit
17dea24533
2 changed files with 3 additions and 3 deletions
|
|
@ -1432,7 +1432,7 @@
|
|||
//
|
||||
// The shell running in the terminal needs to be configured to emit the title.
|
||||
// Example: `echo -e "\e]2;New Title\007";`
|
||||
"breadcrumbs": true
|
||||
"breadcrumbs": false
|
||||
},
|
||||
// Scrollbar-related settings
|
||||
"scrollbar": {
|
||||
|
|
|
|||
|
|
@ -3520,7 +3520,7 @@ List of `integer` column numbers
|
|||
"button": true,
|
||||
"shell": "system",
|
||||
"toolbar": {
|
||||
"breadcrumbs": true
|
||||
"breadcrumbs": false
|
||||
},
|
||||
"working_directory": "current_project_directory",
|
||||
"scrollbar": {
|
||||
|
|
@ -3941,7 +3941,7 @@ Disable with:
|
|||
{
|
||||
"terminal": {
|
||||
"toolbar": {
|
||||
"breadcrumbs": true
|
||||
"breadcrumbs": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue