docs: auto-update documentation

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

Invalid model: claude-opus-4-5

Available built-in models:
  gpt-5.1, gpt-5.1-codex, gpt-5.1-codex-max, gpt-5.2, claude-sonnet-4-5-20250929, claude-opus-4-5-20251101, claude-haiku-4-5-20251001, gemini-3-pro-preview, gemini-3-flash-preview, glm-4.6

No custom models configured. Add them to ~/.factory/config.json
Invalid model: claude-opus-4-5

Available built-in models:
  gpt-5.1, gpt-5.1-codex, gpt-5.1-codex-max, gpt-5.2, claude-sonnet-4-5-20250929, claude-opus-4-5-20251101, claude-haiku-4-5-20251001, gemini-3-pro-preview, gemini-3-flash-preview, glm-4.6

No custom models configured. Add them to ~/.factory/config.json

Triggered by: pr 45352

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