-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
Environment
- OS and Version: macOS 13.2.1
- VS Code Version: 1.75.1
- C/C++ Extension Version: 1.14.3
Bug Summary and Steps to Reproduce
Bug Summary:
When I autocomplete a param it deletes the content on the right side of the line
c++_autocomplete.mp4
Steps to reproduce:
- Copy this code
struct Something {
int something;
};
struct Foo {
Something first, second;
};
Foo foo;
foo.first.something;- delete
first.and place the cursor just afterfoo command + spaceorctrl + space (in windows)to toggle the autocomplete menu- select option (see video above)
Expected behavior:
I will like the behaviour I usually get when working with typescript, where when I call the autocomplete it respects what is written on the right of the line (see video below)
js_autocomplete.mp4
Configuration and Logs
{
"C_Cpp.default.cppStandard": "c++20"
}Other Extensions
No response
Additional context
No response