bouzidanas/streamlit-code-editor

Auto suggestion is not working so well

Closed this issue · 4 comments

image

Thanks a lot for this awesome project, I wonder if it is possible to disable this auto suggestion?

Yes. Do you want to remove snippet suggestions, all suggestions, or that single snippet suggestions?

Like if we can disable all suggestions would be cool :)

To dissable autocomplete and snippets suggestions, just set the following in code_editor function:

response_dict = code_editor(your_code_string, props={ "enableBasicAutocompletion": False, "enableLiveAutocompletion": False, "enableSnippets": False})

Thanks a lot!