VS Code 基于文件中的单词自动完成

VS Code autocompletion base on word in file

我刚开始使用 VS Code,目前我对它非常满意!

我来自 Notepad++,我没有发现任何 IDE 与我正在做的事情相同 "level"。直到现在!我真的很喜欢 VS Code 所做的事情以及所有现代集成技术如何帮助我。

但我想念 NPP 所做的一件事是基于文件中的单词自动完成。那么我可以在 VS Code 中做同样的事情吗?

谢谢。

将此添加到您的 settings.json,然后重新启动 vs 代码:

// 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
"editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
      },

对于自动完成括号,使用此设置:

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