You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
following up with #586, I noticed that disabling LSP completion removes autocompletion in the editor even if a console is attached.
Without the jupyter-lsp package, it's possible to attach a console to the editor to get kernel-base completion for it. Although it's not the best user experience, it gets the job done. I'd expect this feature to be maintained if
"disableCompletionsFrom": ["LSP"]
is used.
Reproduce
Disable LSP autocomplete in Advanced Settings -> Code Completion
{"disableCompletionsFrom": ["LSP"]}
Open a python file in the editor
Right-click -> Create Console for Editor
Type and try autocompleting any statement -> nothing happens.
Expected behavior
I'd expect autocomplete to work for editors with a kernel attached.