Autocomplete for markdown - very distracting

I don’t see an obvious way to turn off autocomplete for markdown. usually it suggests something not relevant to what I’m writing, which is fine. But it makes me not want to use Cursor for any markdown or even comments since it is so distracting. It keeps overriding the settings when I try to turn off autocomplete for “words”

Hello! You should be able to turn off the autocomplete by file type in the bottom right of the editor.

Ahh ok! Thank you, that worked. I kept trying to do it via the Settings and maybe it was getting overridden by this.

Is there a way to disable autocomplete for comments in Python code as well?

1 Like

Hi @chriskeating603

You can configure a list of rules in the settings.

"cursor.cpp.disabledLanguages": [ "plaintext", "markdown", "scminput", "jsonc" ]

ok thank you for the help!!