Auto-suggestion is not working on VS 2019

Hi, I really struggle with the absence of auto-suggestion on VS 2019.
I’ve searched for days.
I installed “game development with c++” and “unreal engine installer”.
I made sure my intellisense is on.

But when I type “#include …”, it doesn’t show any modules fromUE4 but just my files.
And any suggestions related to UE4 doesn’t show.

303424-screenshot-4.png

Thanks for your help in advance.

I also struggle with the IDE. I couldnt find a good one. I have installed lot of UE specific plugins but Rider, Resharper and etc but all sucked.

I usually look up a symbol that I want to use - most IDE and indexed search supports it, usually ctrl-alt-s -, find the method or file I look for and include. Eg: I want a component but I do not know what to include: ctrl-alt-s comp , check for file column and include that.

When it comes to completing while typing, I use “this->” and then the autocomplete helps.

Macros are hard ones but symbol or struct search usually helps.

For now they didn’t fix this problem. I suppose using a previous version of Unreal is a fast solution.

Try to use angular brackets instead of quotations: #include <stuff in here>.

Thanks for that, helped me out a tone! #include was not working until I tried your <> method. Much appreciated!