我尝试在 Sublime Text 中使用片段 - 我在 /Users/davidfaux/Library/Application Support/Sublime Text 2/Packages/User 中创建了一个文档 hello.sublime-snippet:
<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
在我的用户设置中进行设置,并且此属性似乎适用于自动完成。
任何有关调试方向的建议表示赞赏!