Procházet zdrojové kódy

docs: add OPENCODE_DISABLE_TERMINAL_TITLE to environment variables (#5725)

Jeon Suyeol před 2 měsíci
rodič
revize
942498211f
1 změnil soubory, kde provedl 17 přidání a 16 odebrání
  1. 17 16
      packages/web/src/content/docs/cli.mdx

+ 17 - 16
packages/web/src/content/docs/cli.mdx

@@ -295,22 +295,23 @@ The opencode CLI takes the following global flags.
 
 OpenCode can be configured using environment variables.
 
-| Variable                              | Type    | Description                            |
-| ------------------------------------- | ------- | -------------------------------------- |
-| `OPENCODE_AUTO_SHARE`                 | boolean | Automatically share sessions           |
-| `OPENCODE_GIT_BASH_PATH`              | string  | Path to Git Bash executable on Windows |
-| `OPENCODE_CONFIG`                     | string  | Path to config file                    |
-| `OPENCODE_CONFIG_DIR`                 | string  | Path to config directory               |
-| `OPENCODE_CONFIG_CONTENT`             | string  | Inline json config content             |
-| `OPENCODE_DISABLE_AUTOUPDATE`         | boolean | Disable automatic update checks        |
-| `OPENCODE_DISABLE_PRUNE`              | boolean | Disable pruning of old data            |
-| `OPENCODE_PERMISSION`                 | string  | Inlined json permissions config        |
-| `OPENCODE_DISABLE_DEFAULT_PLUGINS`    | boolean | Disable default plugins                |
-| `OPENCODE_DISABLE_LSP_DOWNLOAD`       | boolean | Disable automatic LSP server downloads |
-| `OPENCODE_ENABLE_EXPERIMENTAL_MODELS` | boolean | Enable experimental models             |
-| `OPENCODE_DISABLE_AUTOCOMPACT`        | boolean | Disable automatic context compaction   |
-| `OPENCODE_CLIENT`                     | string  | Client identifier (defaults to `cli`)  |
-| `OPENCODE_ENABLE_EXA`                 | boolean | Enable Exa web search tools            |
+| Variable                              | Type    | Description                              |
+| ------------------------------------- | ------- | ---------------------------------------- |
+| `OPENCODE_AUTO_SHARE`                 | boolean | Automatically share sessions             |
+| `OPENCODE_GIT_BASH_PATH`              | string  | Path to Git Bash executable on Windows   |
+| `OPENCODE_CONFIG`                     | string  | Path to config file                      |
+| `OPENCODE_CONFIG_DIR`                 | string  | Path to config directory                 |
+| `OPENCODE_CONFIG_CONTENT`             | string  | Inline json config content               |
+| `OPENCODE_DISABLE_AUTOUPDATE`         | boolean | Disable automatic update checks          |
+| `OPENCODE_DISABLE_PRUNE`              | boolean | Disable pruning of old data              |
+| `OPENCODE_DISABLE_TERMINAL_TITLE`     | boolean | Disable automatic terminal title updates |
+| `OPENCODE_PERMISSION`                 | string  | Inlined json permissions config          |
+| `OPENCODE_DISABLE_DEFAULT_PLUGINS`    | boolean | Disable default plugins                  |
+| `OPENCODE_DISABLE_LSP_DOWNLOAD`       | boolean | Disable automatic LSP server downloads   |
+| `OPENCODE_ENABLE_EXPERIMENTAL_MODELS` | boolean | Enable experimental models               |
+| `OPENCODE_DISABLE_AUTOCOMPACT`        | boolean | Disable automatic context compaction     |
+| `OPENCODE_CLIENT`                     | string  | Client identifier (defaults to `cli`)    |
+| `OPENCODE_ENABLE_EXA`                 | boolean | Enable Exa web search tools              |
 
 ---