gpt4 book ai didi

visual-studio-code - 用用户定义的片段覆盖 VS 代码片段

转载 作者:行者123 更新时间:2023-12-05 05:22:35 25 4
gpt4 key购买 nike

我在 Visual Studio Code 中配置了以下 TypeScript 片段

"console.log": {
"prefix": "cl",
"body": [
"console.log();"
],
"description": "console.log()"
}

但是它不起作用,因为已经为 cl(类)定义了一个片段。我怎样才能用我的代码覆盖那个片段?我想使用 cl,因为我有其他以相同方式配置的 IDE,并且不想更改我的约定。

最佳答案

当您键入 cl 时,将显示 cl 片段的所有可能扩展的列表,您的片段可能位于列表底部。为了访问列表顶部的代码段,您可以将以下内容添加到您的 settings.json

// Place your settings in this file to overwrite the default settings
{
"typescript.useCodeSnippetsOnMethodSuggest": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true
}

这里请注意 editor.snippetSuggestions。这是定义自动完成列表排序的设置,该列表在您键入代码段的缩写时出现。默认情况下,它是 bottom,这就是您的代码段出现在列表末尾的原因。

关于visual-studio-code - 用用户定义的片段覆盖 VS 代码片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40091530/

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