Skip to content Skip to sidebar Skip to footer

VS Code Autocompletion Base On Word In File

I just begin with VS Code and I'm really happy with it at the moment ! I'm coming from Notepad++ and I didn't found any IDE at the same 'level' of it for the things I'm doing.. Unt

Solution 1:

"editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
      },

Solution 2:

Add this to your settings.json, and restart vs code:

// Controls how JavaScript IntelliSense works.

// Always include all words from the current document.
"javascript.suggest.alwaysAllWords": true,

// Complete functions with their parameter signature.
"javascript.suggest.useCodeSnippetsOnMethodSuggest": true

Solution 3:

For autocomplete brackets use this setting:

// Complete functions with their parameter signature.
"javascript.suggest.completeFunctionCalls": true

Post a Comment for "VS Code Autocompletion Base On Word In File"