console.log()
「c」を入力してからタブトリガーを入力すると起動するSublime Textのスニペットがありますが、ページのどこかに「c」で始まるコードがある場合、オートコンプリートはconsole.logスニペットを上書きします。これを回避する方法はありますか、それともスニペットに別の修飾子を追加する必要がありますか?
<snippet>
<content><![CDATA[console.log($1);$0]]></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.js</scope>
<description>Log</description>
</snippet>