Skip to content

Commit 3b6dd47

Browse files
author
fabiantheblind
committed
lots of snippets and some keywords
1 parent 622c349 commit 3b6dd47

27 files changed

+565
-1387
lines changed

Comments.json-tmPreferences

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "Comments",
3+
"scope": "source.jsx",
4+
5+
"settings": {
6+
"shellVariables": [
7+
{
8+
"name": "TM_COMMENT_START",
9+
"value": "// "
10+
},
11+
{
12+
"name": "TM_COMMENT_START_2",
13+
"value": "/*"
14+
},
15+
{
16+
"name": "TM_COMMENT_END_2",
17+
"value": "*/"
18+
}
19+
]
20+
},
21+
"uuid": "50e1436c-806a-4571-8ab1-93a4fab7f23b"
22+
}

Comments.tmPreferences

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>name</key>
6+
<string>Comments</string>
7+
<key>scope</key>
8+
<string>source.jsx</string>
9+
<key>settings</key>
10+
<dict>
11+
<key>shellVariables</key>
12+
<array>
13+
<dict>
14+
<key>name</key>
15+
<string>TM_COMMENT_START</string>
16+
<key>value</key>
17+
<string>// </string>
18+
</dict>
19+
<dict>
20+
<key>name</key>
21+
<string>TM_COMMENT_START_2</string>
22+
<key>value</key>
23+
<string>/*</string>
24+
</dict>
25+
<dict>
26+
<key>name</key>
27+
<string>TM_COMMENT_END_2</string>
28+
<key>value</key>
29+
<string>*/</string>
30+
</dict>
31+
</array>
32+
</dict>
33+
<key>uuid</key>
34+
<string>50e1436c-806a-4571-8ab1-93a4fab7f23b</string>
35+
</dict>
36+
</plist>

Comments.tmPreferences.cache

199 Bytes
Binary file not shown.

ExtendScript.json-tmLanguage

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "Adobe ExtendScript",
3+
"scopeName": "source.jsx",
4+
"fileTypes": [
5+
"jsx"
6+
],
7+
"patterns": [
8+
{
9+
"comment":"Includes and external syntax definition.",
10+
"include": "source.js"
11+
},
12+
{
13+
"comment":"This is js core",
14+
"name": "support.class.jsx",
15+
"match": "\\b(File|Folder|$)\\b"
16+
},
17+
{
18+
"comment":"This is js script ui",
19+
"name": "support.class.jsx",
20+
"match": "\\b(Bounds|Button|Checkbox|Dimension|DrawState|DropDownList|EditText|FlashPlayer|Group|IconButton|LayoutManager|ListBox|ListItem|Panel|Point|Progressbar|RadioButton|ScriptUI|ScriptUIBrush|ScriptUIFont|ScriptUIGraphics|ScriptUIImage|ScriptUIPath|ScriptUIPen|Scrollbar|Slider|StaticText|TreeView|UIEvent|Window)\\b"
21+
},
22+
{
23+
"comment":"this is AE",
24+
"name":"support.class.jsx",
25+
"match": "\\b(Application|AVLayer|BlendingMode|CloseOptions|CompItem|FieldSeparationType|FileSource|FolderItem|FootageItem|ImportAsType|ImportOptions|ItemCollection|KeyframeEase|KeyframeInterpolationType|Language|LayerCollection|LayerQuality|LogType|MarkerValue|MaskMode|MaskMotionBlur|MaskPropertyGroup|OMCollection|OutputModule|PlaceholderSource|PostRenderAction|Project|Property|PropertyGroup|PropertyType|PropertyValueType|PulldownPhase|PulldownMethod|RenderQueue|RenderQueueItem|RQItemCollection|RQItemStatus|Settings|Shape|SolidSource|System|TextDocument|TimecodeBaseType|TimecodeDisplayType|TimecodeFilmType|TrackMatteType|AutoOrientType|FrameBlendingType)\\b"
26+
}
27+
],
28+
"uuid": "7cafa000-e234-4f57-bb01-7cb3a8f3b963"
29+
}

ExtendScript.json renamed to ExtendScript.json-tmLanguage.bak

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,10 @@
359359
{
360360
"name": "keyword.other.jsx",
361361
"match": "\\b(debugger)\\b"
362+
},
363+
{
364+
"name": "support.class.jsx",
365+
"match": "\\b(File|Folder)\\b"
362366
},
363367
{
364368
"name": "support.class.jsx",

0 commit comments

Comments
 (0)