Reputation: 37
In Visual Studio Community, if a type "game", I get
In VSCode not, its shows only things that starts with game and some weird stuff.
Is there some settings can make it works like VS Community?
Upvotes: 0
Views: 44
Reputation: 65223
This behavior is by-design. VS Code uses looser matching for suggestions but whole word matches such as gameObject
of myGameObject
should always be shown before broken up matches such as GradientMode
.
There is currently no setting to control this. If you have any suggestions on how this could be improved, please file a feature request
Upvotes: 1