ZIm/crates/diagnostics/src
Kirill Bulatov a3105c92a4
Allow to hide more buttons with the settings (#30565)
* project search button in the status bar
```jsonc
"search": {
  "button": false
},
```

* project diagnostics button in the status bar
```jsonc
"diagnostics": {
  "button": false
}
```

* project name and host buttons in the title bar
```jsonc
"title_bar": {
    "show_project_items": false
}
```

* git branch button in the title bar
```jsonc
"title_bar": {
    "show_branch_name": false
}
```

Before:
<img width="1728" alt="before"
src="https://github.com/user-attachments/assets/4b13b431-3ac1-43b3-8ac7-469e5a9ccf7e"
/>

After:
<img width="1728" alt="after"
src="https://github.com/user-attachments/assets/baf2765a-e27b-47a3-8897-89152b7a7c95"
/>


Release Notes:

- Added more settings to hide buttons from Zed UI
2025-05-12 13:34:52 +00:00
..
diagnostic_renderer.rs editor: Add minimap (#26893) 2025-05-07 23:11:09 +03:00
diagnostics.rs Allow to temporarily toggle diagnostics in the editor (#30316) 2025-05-08 21:47:32 +00:00
diagnostics_tests.rs Show diagnostic codes (#29296) 2025-04-23 20:51:01 -06:00
items.rs Allow to hide more buttons with the settings (#30565) 2025-05-12 13:34:52 +00:00
toolbar_controls.rs Use rust-analyzer's flycheck as source of cargo diagnostics (#29779) 2025-05-02 10:07:51 +03:00