When the debugger is running, have it provide input/feedback into IntelliSense #5291
greazer
started this conversation in
Enhancement
Replies: 3 comments
-
This is not specific to data science. This is about enabling column autocomplete when doing regular debugging. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is not specific to data science. This is about enabling column autocomplete when doing regular debugging. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@savannahostrowski JFYI |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Highly related to microsoft/vscode-jupyter#1561, our new ability to debug into cells, makes this issue even more obvious than it was before.
Repro:
myNparray = np.array([['Bob', 1, 2, 3], ['Alice', 4, 5, 6], ['Gina', 7, 8, 9]])
myDataFrame = pd.DataFrame(myNparray, columns=['name', 'b', 'c', 'd'])
Expected Result:
Actual Result:
However they DO appear in the Debug Console input box.
Also note that techincally this is not a data science specific problem. The same thing can happen when doing regular debugging.
We've had several customers notice the related issue microsoft/vscode-jupyter#1561 which deals specifically with the interactive window. As more jupyter like features are added to our experience this will become more of a problem, therefore, I'd really like to see this addressed. :)
Beta Was this translation helpful? Give feedback.
All reactions