From 17dea24533affb0fcb35d96d07ab45d027b78ff1 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Thu, 25 Sep 2025 11:25:37 +0300 Subject: [PATCH] Disable terminal breadcrumbs by default (#38806) image 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 --- assets/settings/default.json | 2 +- docs/src/configuring-zed.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 514dcd4fb3a291508a3952044efcc64b2b3b77f1..93ad70319081316399efe0cddea11bc4c6c62df0 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -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": { diff --git a/docs/src/configuring-zed.md b/docs/src/configuring-zed.md index 1c3074d69269624c09d3566d3d1d0cac52f40ceb..0eed4a71892effdb4176cda05778a561ce233bfd 100644 --- a/docs/src/configuring-zed.md +++ b/docs/src/configuring-zed.md @@ -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 } } }