Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code disable angular auto complete

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

Cheers

like image 300
FrancisA Avatar asked Sep 27 '22 15:09

FrancisA


1 Answers

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.

like image 168
Do Giang Avatar answered Sep 29 '22 23:09

Do Giang