I have a structure like this:
struct SHwnd
{
bool lDeleted;
bool lChanged;
bool lNew;
bool lDisplayed;
union
{
HWND hwnd;
int _hwnd;
};
};
When I'm in the editor, and I type something like:
SHwnd* p = /* code to create a valid instance here*/;
GetWindowLong(h->hwnd,
When I type the comma it's replacing the "h->hwnd" I typed in with the one lingering auto-suggestion which remains above like the attached images.
Is there a way to get it to not do that if what I've typed in fully matches another member's name? This is happening in Visual Studio 2022 in VAX version:
License: Standard ... Support ends 2025.03.27
VA_X64.dll file version 10.9.2515.0 built 2024.03.14
DevEnv.exe version 17.9.34723.18 Professional
msenv.dll version 17.0.34714.143
Comctl32.dll version 6.10.19041.3636
Windows 10 10.0 22H2 Build 19045.4170
8 processors (x86-64)
Language info: 1252, 0x409
--
Rick C. Hodgin
First letter typed:
Two or more letters typed:
After the whole word is typed, and comma is typed: