VisualStudio
VisualStudio copied to clipboard
Auto complete delete prior function names etc.
Versions
- Visual Studio version: 2022.17.0.5
What happened
While writing Python code, I think it is really frustrating that Visual Studio 2022 removes everything when doing Autocomplete.
Steps to Reproduce
Steps to reproduce the behavior:
- Create an empty Python file
- type
demo_number = 10 - type
range(demo - Now you will get the option to autocomplete to demo_number, when you tries to do this
range(demo)gets replaced bydemo_number
Expected behavior
I would like to autocomplete to range(demo_number)
Screenshots
(https://i.stack.imgur.com/ec3Fj.png)