我正在尝试在 Sublime Text 2 中创建一个 Objective-C 片段。我想定义片段的范围,以便该片段在所有 Objective-C 文件中都可用。
但我就是找不到 Objective-C 的范围选择器。这是我的片段...
<snippet>
<content><![CDATA[
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>objdid</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.html</scope> -->
</snippet>
我尝试了 , , 之类的范围.m
,但.h
没有任何效果。像上面一样保存代码段会使代码段在所有文件中弹出,无论是它还是其他任何文件。.Objective-C
.objective-c
.txt