Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable [abc] suggestion on vs-code?

Tags:

I want to disable the [abc] suggestion on the vs-code editor I tried some solution but it doesn't work. Help me to disable it.

Image here

Solution tried 

"editor.wordBasedSuggestions": false,

like image 466
U.A Avatar asked Feb 22 '19 12:02

U.A


People also ask

How do I turn on autocomplete in Visual Studio?

The suggestion list of Basic completion appears when you press the default Visual Studio IntelliSense shortcut Ctrl+Space . If necessary, you can always return to the Visual Studio's native's IntelliSense. To do so, select Visual Studio on the Environment | IntelliSense | General page of ReSharper options ( Alt+R, O ).


2 Answers

I believe the setting you're looking for is:

"editor.suggest.showWords": false 

If you prefer the UI, you can also find it by doing the following

  1. Navigate the menus: click on - File > Preferences > Settings (or press Ctrl + ,)
  2. Type Show Words in the search box at the top
  3. Uncheck the setting Editor > Suggest: Show Words

You can find a full list of intellisense settings explained here (just scroll down a bit to find the list) https://code.visualstudio.com/docs/editor/intellisense

That little text suggestion was very annoying. This is what worked for me. Hope it helps!

like image 132
Vance Palacio Avatar answered Sep 19 '22 13:09

Vance Palacio


oh yes I did it!

"javascript.suggest.names": false 
like image 29
qwabra Avatar answered Sep 20 '22 13:09

qwabra