2017-05-08 34 views
3

我已經在Visual Studio Code中創建了一個JavaScript'用戶片段',使其調用console.log()方法(我寫的一行代碼非常快)經常)。Visual Studio代碼 - 如何將用戶片段放在列表頂部

"Console Log": { 
    "prefix": "log", 
    "body": [ 
     "console.log($0);" 
    ], 
    "description": "JavaScript Console.log()" 
} 

用戶片斷的作品,但是當我鍵入log到編輯器,我的自定義代碼段是在列表的底部。

'log' is at the bottom of the list

有什麼辦法可以讓這個第一個建議,而不是最後一次?

回答

5

嘗試設置:

"editor.snippetSuggestions": "top" 

enter image description here

+0

完美!這正是我需要的。 – AdamMcquiff

+0

如果我可以給你5個upvotes,我會的。 – Parziphal

相關問題