This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
Debug console autocompletion not working #1000
Comments
I don't think this is a regression. The completions were always pretty simple (i.e., the first case). I don't think it ever handled the second case. |
I'll investigate it here (i.e.: it seems to work for me in plain pydev/pydevd, so, it may be some integration issue). |
The problem is that the completion command only expects the token for the completion and not the full text entered (that part was expected to be handled by the IDE)... I'm in the process of changing the related message to use the DAP json format so that it has the full info on the text/column so that it can do what's needed properly. As a note, I'm doing it on top of the changes in the pull request: #1070 (so, please don't rebase when merging). |
fabioz
added a commit
to fabioz/ptvsd
that referenced
this issue
Dec 20, 2018
fabioz
added a commit
to fabioz/ptvsd
that referenced
this issue
Dec 20, 2018
fabioz
added a commit
to fabioz/ptvsd
that referenced
this issue
Dec 20, 2018
fabioz
added a commit
to fabioz/ptvsd
that referenced
this issue
Dec 22, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
From @darrickyee on November 9, 2018 16:21
Environment data
Actual behavior
Autocompletion in the debug console console doesn't seem to work on anything except the first name typed.
Autocomplete works when an object is the first thing typed:
No autocompletion if the same object is on the other side of an assignment, passed as a parameter, or even just enclosed in brackets:
Is this the intended behavior?
Copied from original issue: microsoft/vscode-python#3282
The text was updated successfully, but these errors were encountered: