vlab22
vlab22

Reputation: 37

Autocomplete like Visual Studio Community

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

Answers (1)

Matt Bierner
Matt Bierner

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

Related Questions