如何為 Sublime Text 3 建立新的 JavaScript 片段?

如何為 Sublime Text 3 建立新的 JavaScript 片段?

我想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)找到遊標處的完整範圍。

相關內容