Visual Studio代码 - 如何将用户代码段放在列表顶部

时间:2017-05-08 15:57:23

标签: javascript visual-studio-code code-snippets

我在Visual Studio Code中创建了一个JavaScript'用户代码段',以便稍微调用pip check方法(我经常编写的一行代码)。

console.log()

用户代码段有效,但当我在编辑器中输入"Console Log": { "prefix": "log", "body": [ "console.log($0);" ], "description": "JavaScript Console.log()" } 时,我的自定义代码段位于列表的底部。

'log' is at the bottom of the list

我有什么方法可以把它作为第一个建议,而不是最后一个?

1 个答案:

答案 0 :(得分:6)

尝试设置:

"editor.snippetSuggestions": "top"

enter image description here