I have tried changing all possible settings to try and disable inline code completion in cursor but to no avail.
Is it not possible to turn off inline code suggestions please?
I have tried changing all possible settings to try and disable inline code completion in cursor but to no avail.
Is it not possible to turn off inline code suggestions please?
To completely disable inline code suggestions in Cursor, follow these steps:
Open Settings JSON:
Ctrl+Shift+P
or Cmd+Shift+P
).Add/Modify Settings:
Add these lines to your settings.json
file:
{
// Disable general inline suggestions
"editor.inlineSuggest.enabled": false,
// Disable Cursor's AI-powered completions
"cursor.completions.enabled": false,
// Disable Codeium (if used)
"codeium.enabled": false
}
Restart Cursor for changes to take effect.
Ctrl+,
or Cmd+,
).Editor > Inline Suggestions: Enabled
.Cursor › Completions: Enabled
.Codeium: Enabled
.