streamlit-code-editor icon indicating copy to clipboard operation
streamlit-code-editor copied to clipboard

Auto suggestion is not working so well

Open xihajun opened this issue 1 year ago • 2 comments

image

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

xihajun avatar May 21 '24 22:05 xihajun

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

bouzidanas avatar May 21 '24 22:05 bouzidanas

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

xihajun avatar May 22 '24 15:05 xihajun

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})

bouzidanas avatar May 23 '24 13:05 bouzidanas

Thanks a lot!

xihajun avatar Jun 11 '24 22:06 xihajun