之前我用 vscode 的时候注意到它可以自动补全在文本中已经出现过的单词,在编辑长文本的时候非常舒服。

1

在一次更新后这个特性失效了,经过一番调查怀疑是 editor.quickSuggestions 的默认值可能被修改过,只需要在 settings.json 中重新开启对 commentsstrings 的支持即可。

这两个选项在非 markdown 文件中的行为应该分别是自动补全曾在注释中出现过的单词,以及自动补全曾在字符串中出现过的单词。

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

如果不想全局开启:

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