使用Sublime Text在CSS中自动完成注释块

时间:2014-03-23 06:40:31

标签: autocomplete sublimetext

在js文件中,我可以输入comm,自动完成功能会提示我输入评论块。此功能在CSS文件中不起作用。

我认为这将是我的答案,但事实并非如此。

"auto_complete_selector": "source, text"

这篇文章看起来很有希望,但也不是。 Sublime Text 2 code snippet not working in proper scope

任何人都知道添加它或为CSS打开它的方法吗?

1 个答案:

答案 0 :(得分:0)

您需要添加一个范围包含CSS文件的代码段。例如:

<snippet>
    <content><![CDATA[
/* ----------------------------------------------------------------------------
 * ${1:CSS Section}
 * ------------------------------------------------------------------------- */
]]></content>
    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
    <tabTrigger>comm</tabTrigger>
    <!-- Optional: Set a scope to limit where the snippet will trigger -->
    <scope>source.css</scope>
</snippet>

使用.sublime-snippet扩展程序将此文件保存在用户包文件夹中(Sublime Text - &gt; Preferences - &gt; Browse Packages),您将会很高兴。

在CSS文件中,您可以输入“comm”并点击标签。

注意:我上面提到的文件夹位置适用于Mac用户FYI