From 7322f09934321b3535da43e6ef093ae226087279 Mon Sep 17 00:00:00 2001 From: "factory-droid[bot]" <138933559+factory-droid[bot]@users.noreply.github.com> Date: Sat, 20 Dec 2025 00:00:08 +0000 Subject: [PATCH] docs: auto-update documentation  Based on my analysis of the git diff and documentation changes, I can now provide the summary: ## Documentation Update Summary ### Changes Made | File | Change | Related Code | | --- | --- | --- | | docs/src/configuring-languages.md | Removed extraneous blank line in Storage Location list | Prettier formatting fix | | docs/src/configuring-zed.md | Removed extraneous blank line in preview tabs list | Prettier formatting fix | | docs/src/development.md | Removed 2 extraneous blank lines in numbered workflow steps | Prettier formatting fix | | docs/src/extensions/themes.md | Removed 5 extraneous blank lines in Theme object components list | Prettier formatting fix | | docs/src/languages/r.md | Removed extraneous blank line in extension list | Prettier formatting fix | | docs/src/vim.md | Removed extraneous blank line in AnyQuotes/AnyBrackets section | Prettier formatting fix | ### Rationale These changes are formatting-only fixes to comply with Prettier's 80-character line width standard defined in `docs/.prettierrc`. The blank lines that were removed appeared between list item headers and their nested content, which Prettier considers unnecessary. All changes maintain the same rendered output - only the source markdown structure is affected. ### Review Notes - All 6 files now pass `npx prettier --check docs/src/` - No content changes - purely whitespace/formatting normalization - Changes involve removing blank lines between numbered/bulleted list items and their sub-items (e.g., `2. **Test the first version:**` followed by a blank line before the nested bullets) - This is a formatting consistency fix, not triggered by specific code changes - Total impact: 11 line deletions across 6 files Triggered by: commit 12dbbdd1d339d6de7be57015f4210127a017f2fe Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- docs/src/configuring-languages.md | 1 - docs/src/configuring-zed.md | 1 - docs/src/development.md | 2 -- docs/src/extensions/themes.md | 5 ----- docs/src/languages/r.md | 1 - docs/src/vim.md | 1 - 6 files changed, 11 deletions(-) diff --git a/docs/src/configuring-languages.md b/docs/src/configuring-languages.md index 9185b679063a7e6c4d5026a6df448f8ac24f0a8b..af79e26a4f44e055c1d125c18d35edabd641a662 100644 --- a/docs/src/configuring-languages.md +++ b/docs/src/configuring-languages.md @@ -108,7 +108,6 @@ Zed simplifies language server management for users: 1. Automatic Download: When you open a file with a matching file type, Zed automatically downloads the appropriate language server. Zed may prompt you to install an extension for known file types. 2. Storage Location: - - macOS: `~/Library/Application Support/Zed/languages` - Linux: `$XDG_DATA_HOME/zed/languages`, `$FLATPAK_XDG_DATA_HOME/zed/languages`, or `$HOME/.local/share/zed/languages` diff --git a/docs/src/configuring-zed.md b/docs/src/configuring-zed.md index 81318aa8885fe883acc394e7fe983d7721dd33a5..b5619011af04a399432bf0038dc82e4888e2986a 100644 --- a/docs/src/configuring-zed.md +++ b/docs/src/configuring-zed.md @@ -2909,7 +2909,6 @@ Configuration object for defining settings profiles. Example: - Description: Preview tabs allow you to open files in preview mode, where they close automatically when you switch to another file unless you explicitly pin them. This is useful for quickly viewing files without cluttering your workspace. Preview tabs display their file names in italics. \ There are several ways to convert a preview tab into a regular tab: - - Double-clicking on the file - Double-clicking on the tab header - Using the {#action project_panel::OpenPermanent} action diff --git a/docs/src/development.md b/docs/src/development.md index 8f341dbb1506d4a6fa6c3ffa21960191ec5ecfcf..3cafc0210908d3f754e261e7899747eb2739ff6b 100644 --- a/docs/src/development.md +++ b/docs/src/development.md @@ -58,12 +58,10 @@ Here's a typical workflow for comparing frame rendering performance between diff ``` 2. **Test the first version:** - - Checkout the commit you want to measure - Run Zed in release mode and use it for 5-10 seconds: `cargo run --release &> version-a` 3. **Test the second version:** - - Checkout another commit you want to compare - Run Zed in release mode and use it for 5-10 seconds: `cargo run --release &> version-b` diff --git a/docs/src/extensions/themes.md b/docs/src/extensions/themes.md index ecdbdace591d81f0736bfc65723c3078fe6d8284..d5fbd5afad2b01a5c64ac4bd8f6fb0a8f9ba106f 100644 --- a/docs/src/extensions/themes.md +++ b/docs/src/extensions/themes.md @@ -19,29 +19,24 @@ A Zed theme consists of a Theme Family object including: The core components a Theme object include: 1. Theme Metadata: - - `name`: The name of the theme - `appearance`: Either "light" or "dark" 2. Style Properties under the `style`, such as: - - `background`: The main background color - `foreground`: The main text color - `accent`: The accent color used for highlighting and emphasis 3. Syntax Highlighting: - - `syntax`: An object containing color definitions for various syntax elements (e.g., keywords, strings, comments) 4. UI Elements: - - Colors for various UI components such as: - `element.background`: Background color for UI elements - `border`: Border colors for different states (normal, focused, selected) - `text`: Text colors for different states (normal, muted, accent) 5. Editor-specific Colors: - - Colors for editor-related elements such as: - `editor.background`: Editor background color - `editor.gutter`: Gutter colors diff --git a/docs/src/languages/r.md b/docs/src/languages/r.md index a21afb997639ffcc418e8638c5451394c5f5e4a1..c58fc87c26faea4c59a32f6165e2f53ada84fbfa 100644 --- a/docs/src/languages/r.md +++ b/docs/src/languages/r.md @@ -3,7 +3,6 @@ R support is available via multiple R Zed extensions: - [ocsmit/zed-r](https://github.com/ocsmit/zed-r) - - Tree-sitter: [r-lib/tree-sitter-r](https://github.com/r-lib/tree-sitter-r) - Language-Server: [REditorSupport/languageserver](https://github.com/REditorSupport/languageserver) diff --git a/docs/src/vim.md b/docs/src/vim.md index 09baa9b54f7e1aeb5f16777f4292131315d18928..3389aa159a4dd661623c9b0065a3737962ecebb1 100644 --- a/docs/src/vim.md +++ b/docs/src/vim.md @@ -205,7 +205,6 @@ These text objects implement the behavior of the [mini.ai](https://github.com/ec #### Choosing Between Approaches - Use **AnyQuotes/AnyBrackets** if you: - - Prefer traditional Vim behavior - Want consistent character-based selection prioritizing innermost delimiters - Need behavior that closely matches vanilla Vim's text objects