FrancisA
FrancisA

Reputation: 51

Visual Studio Code disable angular auto complete

can someone explain how you disable angular auto complete on visual studio code?

Cheers

Upvotes: 5

Views: 873

Answers (1)

Do Giang
Do Giang

Reputation: 96

Open the editor settings and search for the 'angular1' you will find a config:

"html.suggest.angular1": true

copy this line to user setting and edit it to:

"html.suggest.angular1": false

Angular1 suggestion will be disable.

Upvotes: 4

Related Questions