-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with Pylance/autocompletion in new interactive window #7406
Comments
Thanks @StevenLi-DS, will discuss at next triage meeting |
May I know why |
This looks to be a bug in our autocomplete for the interactive window. We aren't asking jupyter for any autocomplete in the input box anymore. |
Is there a current workaround for the second issue I mentioned above?
|
Sorry not sure what you're referring to when you say it blocks your code? You mean it comes up on top of it visually? AFAIK this is by design |
Thanks. I created a new issue in VS code for that: |
@rchiodo |
You'd have to disable intellisense altogether (it's a bug). If you switch to 'jedi' as the language server for python code, those squiggles won't show up. |
@rchiodo Is this a known issue and logged on your end? |
Other than in this issue, I don't think we have a separate bug for it. Looks like there's a newline problem in the concatenation of the cells as we pass them to pylance. |
2nd issue is actually covered by this #8021 |
Intellisense should be working again in the insiders version. |
%config Completer.use_jedi = False
is no longer working, so no Jupyter autocompletion is enabled and no autocompletion for column names when using dot notation.Auto complete for file/path name and
pandas
column name with bracket access pylance-release#851Autocomplete hangs the kernel for interactive window #1300
The code entering field is fixed at the bottom, so the autocompletion blocks your code completely sometimes.
unnecessary checking
The text was updated successfully, but these errors were encountered: