因为设置代码块无法在 markdown 格式的文件中使用,于是就百度了下,找到了解决方法,记录于此。
- 在 vs code 中 crtl + shift + p
- 输入 settings, 找到 “配置语言特定设置”,点击,再找到 markdown 点击打开
- 设置相关内容
"[markdown]": {
"editor.renderWhitespace": "all",
"editor.quickSuggestions": true,
"editor.acceptSuggestionOnEnter": "on"
}
这样保存后就可以在 .md 文件中使用 snippet 快捷键生成的代码片段了
最主要的就是 editor.quickSuggestions 参数了
同理其他文件中要是需要使用 snippet 找到相应的文件配置就可以了。
发表评论: