Hello everyone, im currently using Code mirror in my react project, and was wondering if it is possible to set the state of the auto completion feature, can i turn it off? so it doesnt show hints or suggestions? i noticed that in my current project, the hints are their for python and JavaScript code snippets, other languages are fine.
The way to not have autocompletion is to not load the extensions that produce it. In this case, you’re likely including the full python()
/ javascript()
language support extensions, rather than just pythonLanguage
/javascriptLanguage
.
so python() and pythonLanguage are two different things?