有没有我可以修改的配置,这样我就不必先 ⌃Space 来为 vscode 中的 "markdown" 触发 IntelliSense
Is there a configuration I could modify so that I don't have to ⌃Space first to trigger IntelliSense for "markdown" in vscode
我读过这个 post and official doc, 并转载了他们所说的内容。
要触发 "markdown" 的 IntelliSense,我必须先按 ⌃Space,然后输入前缀关键字,这很无聊。
有没有我可以修改的配置,这样我就不必先 ⌃Space 来为 "markdown"
触发 IntelliSense
要在您输入时启用建议(快速建议),请在您的设置 json 文件中 set:
"[markdown]": {
"editor.quickSuggestions": {
"other": true
}
}
Markdown 默认禁用快速建议。 [markdown]
特定于语言的设置块可让您覆盖此默认值并重新启用它们。
如果您在 markdown 中启用快速建议,您可能还想通过设置禁用对文件中单词的建议:"editor.wordBasedSuggestions": false
我读过这个 post and official doc, 并转载了他们所说的内容。
要触发 "markdown" 的 IntelliSense,我必须先按 ⌃Space,然后输入前缀关键字,这很无聊。
有没有我可以修改的配置,这样我就不必先 ⌃Space 来为 "markdown"
触发 IntelliSense要在您输入时启用建议(快速建议),请在您的设置 json 文件中 set:
"[markdown]": {
"editor.quickSuggestions": {
"other": true
}
}
Markdown 默认禁用快速建议。 [markdown]
特定于语言的设置块可让您覆盖此默认值并重新启用它们。
如果您在 markdown 中启用快速建议,您可能还想通过设置禁用对文件中单词的建议:"editor.wordBasedSuggestions": false