VS Code autocompletion base on word in file

后端 未结 3 1572
迷失自我
迷失自我 2021-01-17 19:02

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 th

相关标签:
3条回答
  • 2021-01-17 19:27

    For autocomplete brackets use this setting:

    // Complete functions with their parameter signature.
    "javascript.suggest.completeFunctionCalls": true
    
    0 讨论(0)
  • 2021-01-17 19:37
    "editor.quickSuggestions": {
            "other": true,
            "comments": true,
            "strings": true
          },
    
    0 讨论(0)
  • 2021-01-17 19:41

    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
    
    0 讨论(0)
提交回复
热议问题