docs: Remove references to copilot and show_copilot_suggestions settings (#13169)

This PR removes references to the deprecated `copilot` and
`show_copilot_suggestions` settings.

These settings were removed in #13167.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-06-17 16:12:26 -04:00 committed by GitHub
parent ca035dbdd8
commit bb1d52b485
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ Folder-specific settings are used to override Zed's global settings for files wi
The following global settings can be overridden with a folder-specific configuration: The following global settings can be overridden with a folder-specific configuration:
- `copilot` - `inline_completions`
- `enable_language_server` - `enable_language_server`
- `ensure_final_newline_on_save` - `ensure_final_newline_on_save`
- `format_on_save` - `format_on_save`
@ -17,7 +17,7 @@ The following global settings can be overridden with a folder-specific configura
- `remove_trailing_whitespace_on_save` - `remove_trailing_whitespace_on_save`
- `soft_wrap` - `soft_wrap`
- `tab_size` - `tab_size`
- `show_copilot_suggestions` - `show_inline_completions`
- `show_whitespaces` - `show_whitespaces`
_See the Global settings section for details about these settings_ _See the Global settings section for details about these settings_
@ -161,14 +161,14 @@ For example, to disable ligatures and set `7` to `cv01` for a given font you can
The `left_padding` and `right_padding` options define the relative width of the The `left_padding` and `right_padding` options define the relative width of the
left and right padding of the central pane from the workspace when the centered layout mode is activated. Valid values range is from `0` to `0.4`. left and right padding of the central pane from the workspace when the centered layout mode is activated. Valid values range is from `0` to `0.4`.
## Copilot ## Inline Completions
- Description: Copilot-specific settings. - Description: Settings for inline completions.
- Setting: `copilot` - Setting: `inline_completions`
- Default: - Default:
```json ```json
"copilot": { "inline_completions": {
"disabled_globs": [ "disabled_globs": [
".env" ".env"
] ]
@ -179,7 +179,7 @@ left and right padding of the central pane from the workspace when the centered
### Disabled Globs ### Disabled Globs
- Description: The set of glob patterns for which Copilot should be disabled in any matching file. - Description: A list of globs representing files that inline completions should be disabled for.
- Setting: `disabled_globs` - Setting: `disabled_globs`
- Default: [".env"] - Default: [".env"]
@ -959,7 +959,7 @@ The following settings can be overridden for each specific language:
- `hard_tabs` - `hard_tabs`
- `preferred_line_length` - `preferred_line_length`
- `remove_trailing_whitespace_on_save` - `remove_trailing_whitespace_on_save`
- `show_copilot_suggestions` - `show_inline_completions`
- `show_whitespaces` - `show_whitespaces`
- `soft_wrap` - `soft_wrap`
- `tab_size` - `tab_size`
@ -1082,10 +1082,10 @@ These values take in the same options as the root-level settings with the same n
`integer` values `integer` values
## Show Copilot Suggestions ## Show Inline Completions
- Description: Whether or not to show Copilot suggestions as you type or wait for a `copilot::Toggle`. - Description: Whether to show inline completions as you type or manually by triggering `editor::ShowInlineCompletion`.
- Setting: `show_copilot_suggestions` - Setting: `show_inline_completions`
- Default: `true` - Default: `true`
**Options** **Options**