我想c
觸發console.log()
我創建的程式碼片段具有以下正確的語法,並且根據這些文章位於正確的資料夾路徑中:http://www.hongkiat.com/blog/sublime-code-snippets/|http://sublimetext.info/docs/en/extensibility/snippets.html
<snippet>
<content><![CDATA[
console.log(${1:this});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>c</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.JavaScript</scope>
</snippet>
User
我在我的資料夾和資料夾中建立了片段檔案User/Javascript
。它sublime-snippet
也有正確的擴展名。
經歷了安裝 JavaScript 預設片段的麻煩,但現在不僅僅是console
它,還有console.dir(obj)
誰使用那個哈哈?無論如何,如果我無法創建自己的自訂片段,我該如何編輯這個片段?
答案1
Sublime 中 JavaScript 檔案的基本範圍是source.js
,而不是source.javascript
.您可以點選CtrlAltShiftP(Linux/Windows) 或⌘AltP(OS X)找到遊標處的完整範圍。