Skip to content

Commit

Permalink
docs: Remove references to copilot and show_copilot_suggestions s…
Browse files Browse the repository at this point in the history
…ettings (#13169)

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

These settings were removed in #13167.

Release Notes:

- N/A
  • Loading branch information
maxdeviant authored Jun 17, 2024
1 parent ca035db commit bb1d52b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/src/configuring-zed.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `copilot`
- `inline_completions`
- `enable_language_server`
- `ensure_final_newline_on_save`
- `format_on_save`
Expand All @@ -17,7 +17,7 @@ The following global settings can be overridden with a folder-specific configura
- `remove_trailing_whitespace_on_save`
- `soft_wrap`
- `tab_size`
- `show_copilot_suggestions`
- `show_inline_completions`
- `show_whitespaces`

_See the Global settings section for details about these settings_
Expand Down Expand Up @@ -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
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.
- Setting: `copilot`
- Description: Settings for inline completions.
- Setting: `inline_completions`
- Default:

```json
"copilot": {
"inline_completions": {
"disabled_globs": [
".env"
]
Expand All @@ -179,7 +179,7 @@ left and right padding of the central pane from the workspace when the centered

### 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`
- Default: [".env"]

Expand Down Expand Up @@ -959,7 +959,7 @@ The following settings can be overridden for each specific language:
- `hard_tabs`
- `preferred_line_length`
- `remove_trailing_whitespace_on_save`
- `show_copilot_suggestions`
- `show_inline_completions`
- `show_whitespaces`
- `soft_wrap`
- `tab_size`
Expand Down Expand Up @@ -1082,10 +1082,10 @@ These values take in the same options as the root-level settings with the same n

`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`.
- Setting: `show_copilot_suggestions`
- Description: Whether to show inline completions as you type or manually by triggering `editor::ShowInlineCompletion`.
- Setting: `show_inline_completions`
- Default: `true`

**Options**
Expand Down

0 comments on commit bb1d52b

Please sign in to comment.