11

我刚从 VS Code 开始,现在我真的很满意!

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

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

谢谢。

4

3 回答 3

9
"editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
      },
于 2017-08-17T10:08:21.753 回答
0

将此添加到您的 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
于 2015-11-26T10:17:18.987 回答
-1

对于自动完成括号,请使用以下设置:

// Complete functions with their parameter signature.
"javascript.suggest.completeFunctionCalls": true
于 2019-01-20T17:51:55.817 回答