Skip to content

Commit

Permalink
1- grunt/gulp should have all the features of the main syntax available
Browse files Browse the repository at this point in the history
now (it follows whatever is default is “js or coffee”

2- small fix for the sidebar folder icons flicker, still need a fix for
the animated open/close
  • Loading branch information
ctf0 committed Jan 1, 2017
1 parent 508b04c commit ff01364
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Seti.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@
{
"class": "icon_folder",
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 1,
"layer0.inner_margin": 0,
"content_margin": [8,8]
},
Expand All @@ -993,7 +993,7 @@
"class": "icon_folder",
"settings": ["Seti_ClosedFolder_same"],
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.opacity": { "target": 0.5, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 0.5,
"layer0.inner_margin": -2
},
// Sidebar folder opened
Expand All @@ -1002,7 +1002,7 @@
"parents": [{ "class": "tree_row", "attributes": ["expanded"]}],
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.inner_margin": -5,
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 1,
"content_margin": [8,0],
},
// Options
Expand Down
6 changes: 3 additions & 3 deletions Seti_orig.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@
{
"class": "icon_folder",
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 1,
"layer0.inner_margin": 0,
"content_margin": [8,8]
},
Expand All @@ -948,7 +948,7 @@
"class": "icon_folder",
"settings": ["Seti_ClosedFolder_same"],
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.opacity": { "target": 0.5, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 0.5,
"layer0.inner_margin": -2
},

Expand All @@ -958,7 +958,7 @@
"parents": [{ "class": "tree_row", "attributes": ["expanded"]}],
"layer0.texture": "Seti_UI/Main/[email protected]",
"layer0.inner_margin": -5,
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
"layer0.opacity": 1,
"content_margin": [8,0],
},
// Options
Expand Down
2 changes: 1 addition & 1 deletion icons/Langs/Gruntfile (Coffee).tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
</dict>
</array>
<key>scopeName</key>
<string>source.gruntfile.coffee</string>
<string>source.coffee.gruntfile</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion icons/Langs/Gruntfile (JS).tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
</dict>
</array>
<key>scopeName</key>
<string>source.gruntfile.js</string>
<string>source.js.gruntfile</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion icons/Langs/Gulpfile (Coffee).tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
</dict>
</array>
<key>scopeName</key>
<string>source.gulpfile.coffee</string>
<string>source.coffee.gulpfile</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion icons/Langs/Gulpfile (JS).tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
</dict>
</array>
<key>scopeName</key>
<string>source.gulpfile.js</string>
<string>source.js.gulpfile</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion icons/Prefs/icon_gruntfile.tmPreferences
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>scope</key>
<string>source.gruntfile.js, source.gruntfile.coffee</string>
<string>source.js.gruntfile, source.coffee.gruntfile</string>
<key>settings</key>
<dict>
<key>icon</key>
Expand Down
2 changes: 1 addition & 1 deletion icons/Prefs/icon_gulpfile.tmPreferences
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>scope</key>
<string>source.gulpfile.js, source.gulpfile.coffee</string>
<string>source.js.gulpfile, source.coffee.gulpfile</string>
<key>settings</key>
<dict>
<key>icon</key>
Expand Down

0 comments on commit ff01364

Please sign in to comment.