我試着在崇高的文本使用片段 - 我/用戶/ davidfaux /庫/ Application Support /崇高文本中創建的文檔hello.sublime - 摘錄2 /封裝/用戶:爲什麼Sublime文本中的代碼片段不能做任何事情?
<snippet>
<content><![CDATA[
alert("hello {$1}");
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<!-- <tabTrigger>hello</tabTrigger> -->
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.js</scope> -->
</snippet>
然後,我創建了一個在我的桌面上的新文件叫做hello.js:
document.onload = function() {
hello
}
但是,當我在hello之後按下tab鍵時,什麼也沒有發生。爲什麼不?我嘗試在我的用戶設置中設置"auto_complete_commit_on_tab": true
,並且此屬性似乎適用於自動填充。
任何有關調試方向的建議都會被讚賞!