cody
cody copied to clipboard
config to disable autocomplete does not apply to "auto edit - beta" mode
Version
1.84.0
Describe the bug
I want to turn off cody autocomplete on certain workspaces with settings.json. This is achievable via setting false to all language "cody.autocomplete.languages" like so for autocomplete suggestion mode. However, this setting does not work with the beta suggestion mode
// ✅ this would work
{
"cody.autocomplete.languages": {
"*": false,
},
"cody.suggestions.mode": "autocomplete"
}
// ❌ this would NOT work
{
"cody.autocomplete.languages": {
"*": false,
},
"cody.suggestions.mode": "auto-edit (Beta)"
}
Expected behavior
the config above should also work for beta suggestion mode.
Additional context
No response