From 2fc74a1b7132db1d9c20b1405b4bd3b9d030230f Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Tue, 10 Sep 2024 19:50:43 +0900 Subject: [PATCH] Update doc comments with tabs.file_icons default (#17629) The diff only contains doc comments changes, however I expect this also fixes generating JSON Schema which generated by [schemars](https://github.com/GREsau/schemars/blob/092dc17ae4831d42974653588cebcc089d07493e/docs/examples/6-doc_comments.md). This default value is actually true at first. 1818fef32f24f24f082c6f34a4c3100add6d328c However, it was changed in the following commit. bf7e474bbcc2fadf002adb273e2584c77c1573e3 Closes #17628 Release Notes: - N/A --- crates/workspace/src/item.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/item.rs b/crates/workspace/src/item.rs index 422ed1f165..935f0268b6 100644 --- a/crates/workspace/src/item.rs +++ b/crates/workspace/src/item.rs @@ -79,7 +79,7 @@ pub struct ItemSettingsContent { close_position: Option, /// Whether to show the file icon for a tab. /// - /// Default: true + /// Default: false file_icons: Option, }