Visual Studio Code Intellisense and Parsing is Really SLOW FIX

Hey guys, I just want to share my solution to the above mentioned problem.
I faced this problem few months ago and asked for any fix in community - Link to the Question
I could not find a solution.
So, I started using Rider for Unreal Engine(which has been a great experience). But still wanted to use VS Code cuz I use it for other stuff apart from UE4.

So, I found this solution from a python intellisense issue discussion. which when tried worked for Unreal C++

So to Fix the problem →

  1. Edit Quick Suggestion Setting in VSCode

    Open the setting.json and the following code
  "editor.quickSuggestions": {
    "other": true,
    "comments": true,
    "strings": true
  },
  "editor.quickSuggestionsDelay": 10,

to the end of file like this
image

  1. Next change the Microsoft C++ Extension Intellisense Engine to Tag Parser
    like this

this will remove Intellisense based on context but will give fast code completion.

This should hopefully fix all your Intellisense issues like late loading of suggestions, parsing taking long time, etc.

Thank You

NOTE : This fix works in UE 5 also

4 Likes

Weird. Only comments and strings should be non-default from this. Can’t imagine that doing much unless for some reason its not working as their official page suggests or for some reason it didn’t get set. IntelliSense in Visual Studio Code

The settings shown below are the default settings.
...
"editor.quickSuggestions": {
    "other": true,
    "comments": false,
    "strings": false
}
...
"editor.quickSuggestionsDelay": 10,
1 Like

HELPS A LOT, Thanks Pal.

Tag parser on Intellisense Engine it great even if it’s give you a fuzzy mom-context aware, but you can easly find what you are looking for.

:metal: :clap:

Made my day.
I was so irritated with the slow suggestions. It goes to “Loading” each time I make any changes.
Now after your suggested changes, it works so good as I need.
Thank you so much.

1 Like

Thank you soooooooo much!! This is really helpful!!!

1 Like

I registered just to say thank you, I was searching 2 hours, finally with your help Its done. Thank you

1 Like

Great Walkthrough, it helped a lot, thank you!
Do note for anyone reading this!
Step one has changed slightly as of the time of my response. Thankfully, it’s now easier, just set comments and strings to true by hovering over them and looking for the little edit item icon (pen) on the far right of the line you are hovering over. Then, selecting on from the drop down.

Step two is what really helped me. Type in the search bar “intell” and scroll down till you find C_Cpp: Intelli Sense Engine. Then, change to Tag Parse like suggested. Following the search query from the screenshot didn’t show the correct settings thus using “intell” did.

You saved me some good money, i thought my PC is slow and was going to buy a new one.

Privacy & Terms