cody icon indicating copy to clipboard operation
cody copied to clipboard

config to disable autocomplete does not apply to "auto edit - beta" mode

Open luutuankiet opened this issue 9 months ago • 2 comments

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

luutuankiet avatar Apr 11 '25 23:04 luutuankiet