Expand tilde paths in edit prediction settings (#31235)
Release Notes: - edit_prediction: Handle `~` in paths in `disabled_globs` setting
This commit is contained in:
parent
657c8b1084
commit
b798392050
4 changed files with 29 additions and 5 deletions
|
@ -231,6 +231,18 @@ To not have predictions appear automatically as you type when working with a spe
|
|||
}
|
||||
```
|
||||
|
||||
### In Specific Directories
|
||||
|
||||
To disable edit predictions for specific directories or files, set this within `settings.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"edit_predictions": {
|
||||
"disabled_globs": ["~/.config/zed/settings.json"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Turning Off Completely
|
||||
|
||||
To completely turn off edit prediction across all providers, explicitly set the settings to `none`, like so:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue