如何在VSCode中像Sublime那样补全输入过的单词与词语

silverwq
2022-06-13 / 0 评论 / 198 阅读 / 正在检测是否收录...

一、概述

有时候我们希望,我们输入过的单词和词语,能够被提示。

二、安装插件

安装:All Autocomplete插件即可。安装完之后,要进行如下设置,才会在字符串中提示:

  // Controls whether suggestions should automatically show up while typing.
  "editor.quickSuggestions": {
    "other": true,
    "comments": true,
    "strings": true
  }
0

评论 (0)

取消