Reputation: 51
can someone explain how you disable angular auto complete on visual studio code?
Cheers
Upvotes: 5
Views: 873
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