Skip to content

Commit

Permalink
tweak storage.modifier for c++ to fix #57
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Mar 28, 2017
1 parent 32df6eb commit 2f9451f
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Solarized (dark).tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,18 @@
</dict>
</dict>

<!-- C++ -->
<dict>
<key>name</key>
<string>Storage</string>
<key>scope</key>
<string>storage.modifier.c++</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#859900</string>
</dict>
</dict>

<!-- Perl -->
<dict>
Expand Down
13 changes: 13 additions & 0 deletions Solarized (light).tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,19 @@
</dict>
</dict>

<!-- C++ -->
<dict>
<key>name</key>
<string>Storage</string>
<key>scope</key>
<string>storage.modifier.c++</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#859900</string>
</dict>
</dict>

<!-- Perl -->
<dict>
<key>name</key>
Expand Down
13 changes: 13 additions & 0 deletions samples/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,16 @@ int main(int argc, char **argv) {
printf("New speed: %2d\n", speed);
return 0;
}


class Test :
public Interface
{
public:
virtual
void
SomeMethod();

private:
int SomeData
};

0 comments on commit 2f9451f

Please sign in to comment.