从textmate包宏中排除文件类型

时间:2010-12-06 08:17:30

标签: macros textmate bundle

我想知道如何编写TextMate包以及如何从某个包中排除文件。

您能否回答my comment on this textmate whitespace bundle issue中的问题?

1 个答案:

答案 0 :(得分:3)

转到Bundles - >捆绑编辑器 - >显示捆绑编辑器 展开Uber Glory包并选择将标签转换为空格... 在标记为范围选择器的字段中,放置- text.html.markdown

这应该对文件进行以下添加:/Macros/Convert Tabs to Spaces, Strip whitespace, save.tmMacro

@@ -51,6 +51,8 @@
        <string>@s</string>
        <key>name</key>
        <string>Convert Tabs to Spaces, Strip whitespace, save</string>
+       <key>scope</key>
+       <string>- text.html.markdown</string>
        <key>uuid</key>
        <string>D6844EF1-342B-46D9-A687-CB402F7F4209</string>
 </dict>

注意:如果您想通过编辑文件进行更改,请务必选择Bundles - &gt;捆绑编辑器 - &gt;重新加载捆绑包