gpt4 book ai didi

visual-studio-code - 如何自动设置 Markdown 片段触发

转载 作者:行者123 更新时间:2023-12-03 16:45:13 26 4
gpt4 key购买 nike

根据官方文件https://code.visualstudio.com/docs/languages/markdown

Snippets for Markdown

There are several built-in Markdown snippets included in VS Code - press Ctrl+Space (Trigger Suggest) and you get a context specific list of suggestions.



有什么办法,当我输入单词时会自动触发代码段,因为这很麻烦,请按Ctrl + Space

最佳答案

尝试setting:

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

当您开始键入时,这将自动启用IntelliSense。默认情况下,它将显示摘要和基于单词的建议(基于当前文档中单词的建议)。要禁用基于单词的建议,请设置:
"[markdown]": {
"editor.quickSuggestions": true,
"editor.wordBasedSuggestions": false
}

您还可以设置:
"editor.snippetSuggestions": "top"

如果您始终希望摘要显示在词库建议之前

关于visual-studio-code - 如何自动设置 Markdown 片段触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43639841/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com