docs: auto-update documentation

factory-droid[bot] and factory-droid[bot] created


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>

Change summary

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(-)

Detailed changes

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`
 

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

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`
 

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

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)
 

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