From fee49fcf657e2514b02b6e9f81003ea48206c231 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sat, 27 Jul 2024 16:39:32 -0400 Subject: [PATCH] docs: Fix `project_panel` setting defaults (#15358) This PR fixes the defaults for the `project_panel` setting shown in the docs. Release Notes: - N/A --- docs/src/configuring-zed.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/docs/src/configuring-zed.md b/docs/src/configuring-zed.md index fc5d5b80b3..5159904b7f 100644 --- a/docs/src/configuring-zed.md +++ b/docs/src/configuring-zed.md @@ -1569,20 +1569,22 @@ Run the `theme selector: toggle` action in the command palette to see a current - Default: ```json -"project_panel": { - "button": true, - "dock": "left", - "git_status": true, - "default_width": "N/A - width in pixels", - "auto_reveal_entries": true, - "auto_fold_dirs": false, - "file_icons": true, - "folder_icons": true, - "indent_size" : 20, - "scrollbar": { - "show": "always" +{ + "project_panel": { + "button": true, + "default_width": 240, + "dock": "left", + "file_icons": true, + "folder_icons": true, + "git_status": true, + "indent_size": 20, + "auto_reveal_entries": true, + "auto_fold_dirs": true, + "scrollbar": { + "show": "always" + } } -}, +} ``` ### Dock