Skip to content

Commit

Permalink
improved method-call + added coloring for primitives.
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Oct 16, 2014
1 parent 19baa47 commit 4b1287d
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
======================

v 1.1.0
----------------------
+ Improved scope for method calls.
+ Added coloring for primitives.

v 1.0.0
----------------------
+ Initial version
35 changes: 24 additions & 11 deletions Monocyanide ColorScheme.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -1887,17 +1887,6 @@
<string> bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Method call</string>
<key>scope</key>
<string>meta.method-call</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string> bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Documentation Tag</string>
Expand Down Expand Up @@ -1942,6 +1931,30 @@
<string> bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Primitive</string>
<key>scope</key>
<string>storage.type.return-type.primitive, storage.type.primitive</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ffef64</string>
<key>fontStyle</key>
<string></string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Method call</string>
<key>scope</key>
<string>meta.function-call - punctuation - meta.function-call.arguments - variable</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string> bold</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>1D07ACC0-832F-11E2-9E96-0800200C9A66</string>
Expand Down
22 changes: 15 additions & 7 deletions Monocyanide ColorScheme.tmTheme.JSON
Original file line number Diff line number Diff line change
Expand Up @@ -1173,13 +1173,6 @@
"fontStyle": " bold"
}
},
{
"name": "Method call",
"scope": "meta.method-call",
"settings": {
"fontStyle": " bold"
}
},
{
"name": "Documentation Tag",
"scope": "meta.documentation.tag keyword.other.documentation",
Expand Down Expand Up @@ -1207,6 +1200,21 @@
"settings": {
"fontStyle": " bold"
}
},
{
"name": "Primitive",
"scope": "storage.type.return-type.primitive, storage.type.primitive",
"settings": {
"fontStyle": "",
"foreground": "#ffef64"
}
},
{
"name": "Method call",
"scope": "meta.function-call - punctuation - meta.function-call.arguments - variable",
"settings": {
"fontStyle": " bold"
}
}
],
"uuid": "1D07ACC0-832F-11E2-9E96-0800200C9A66"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Then inside Sublime Text, go to `Preferences -> Color Scheme -> User -> Monocyan
Adds scopes, support and/or improves styling for:

* Keyword control: bold
* Primitives are differently colored.
* Comments are entirely desaturated.
* Documentation comments: lighter than normal comments.
* Documentation tags (@param, ...): bold
Expand Down

0 comments on commit 4b1287d

Please sign in to comment.