Skip to content

Commit 5b9fc7f

Browse files
committed
Update 1.0 - fix errors and add support for other languages
1 parent 6a7399d commit 5b9fc7f

File tree

4 files changed

+806
-374
lines changed

4 files changed

+806
-374
lines changed

theme-sublime-monokai-csharp-colorizer/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ This theme is exactly the same Monokai's theme of Sublime Text but for Visual St
77

88
**Important!** Make sure that you choose the **Sublime Monokai** color theme at the Welcome tab *(Help>Welcome)* and check bottom right if **C# Sublime Colorizer** is working instead of the default C#, as can be seen in the next screenshot:
99

10-
![Sublime colorizer working](/screenshots/sublime-colorizer-working.png?raw=true "Sublime colorizer working")
10+
![Sublime colorizer working](https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code/raw/master/screenshots/sublime-colorizer-working.png?raw=true "Sublime colorizer working")
1111

1212
---
1313

1414
## Screenshots
15-
![Sublime monokai theme demo](/screenshots/sublime-monokai-demo.png?raw=true "Sublime monokai theme demo")
15+
![Sublime monokai theme demo](https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code/raw/master/screenshots/sublime-monokai-demo.png?raw=true "Sublime monokai theme demo")
1616
### Comparison between this theme and Sublime Text's
17-
![This theme vs Sublime Text's](/screenshots/sublime-monokai-vs-sublime-text.png?raw=true "This theme vs Sublime Text's")
17+
![This theme vs Sublime Text's](https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code/raw/master/screenshots/sublime-monokai-vs-sublime-text.png?raw=true "This theme vs Sublime Text's")
1818
### Comparison between default VSCode Monokai theme and Sublime Text's
1919
Observe the differences. Is subtle but it's there.
2020

21-
![Default VSCode Monokai vs Sublime Text's](/screenshots/default-monokai-vs-sublime-text.png?raw=true "Default VSCode Monokai vs Sublime Text's")
21+
![Default VSCode Monokai vs Sublime Text's](https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code/raw/master/screenshots/default-monokai-vs-sublime-text.png?raw=true "Default VSCode Monokai vs Sublime Text's")
2222

2323
**Why override C# parser/colorizer if it's a theme? Keep reading [the repo](https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code)**
2424

25-
**Happy coding!** now with Monokai ;)
25+
**Happy coding!** now with Monokai ;)
Lines changed: 55 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,56 @@
11
{
2-
"name": "identical-sublime-monokai-csharp-theme-colorizer",
3-
"displayName": "Identical Sublime Monokai C# theme and colorizer",
4-
"version": "0.10.0",
5-
"publisher": "maximetinu",
6-
"repositoryURL": "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code",
7-
"repository": "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code",
8-
"galleryBanner.color": "#A6E22E",
9-
"icon": "icon.png",
10-
"engines": {
11-
"vscode": "*"
12-
},
13-
"contributes": {
14-
"themes": [
15-
{
16-
"label": "Sublime Monokai",
17-
"uiTheme": "vs-dark",
18-
"path": "./themes/sublime-monokai-color-theme.json"
19-
},
20-
{
21-
"label": "Sublime Monokai Light",
22-
"uiTheme": "vs",
23-
"path": "./themes/sublime-monokai-color-theme-light.json"
24-
}
25-
],
26-
"languages": [
27-
{
28-
"id": "csharp",
29-
"extensions": [
30-
".cs",
31-
".csx",
32-
".cake"
33-
],
34-
"aliases": [
35-
"C# Sublime Colorizer",
36-
"csharp"
37-
],
38-
"configuration": "./language-configuration.json"
39-
}
40-
],
41-
"grammars": [
42-
{
43-
"language": "csharp",
44-
"scopeName": "source.cs",
45-
"path": "./syntaxes/csharp.tmLanguage.json"
46-
}
47-
],
48-
"snippets": [
49-
{
50-
"language": "csharp",
51-
"path": "./snippets/csharp.json"
52-
}
53-
]
54-
}
55-
}
2+
"name": "identical-sublime-monokai-csharp-theme-colorizer",
3+
"displayName": "Identical Sublime Monokai C# theme and colorizer",
4+
"version": "0.11.1",
5+
"publisher": "maximetinu",
6+
"repositoryURL": "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code",
7+
"repository": "https://github.com/Maximetinu/Sublime-Text-Monokai-theme-for-Visual-Studio-Code",
8+
"galleryBanner.color": "#A6E22E",
9+
"icon": "icon.png",
10+
"engines": {
11+
"vscode": "*"
12+
},
13+
"contributes": {
14+
"themes": [
15+
{
16+
"label": "Sublime Monokai",
17+
"uiTheme": "vs-dark",
18+
"path": "./themes/sublime-monokai-color-theme.json"
19+
}
20+
],
21+
"languages": [
22+
{
23+
"id": "csharp",
24+
"extensions": [
25+
".cs",
26+
".csx",
27+
".cake"
28+
],
29+
"aliases": [
30+
"C# Sublime Colorizer",
31+
"csharp"
32+
],
33+
"configuration": "./language-configuration.json"
34+
}
35+
],
36+
"grammars": [
37+
{
38+
"language": "csharp",
39+
"scopeName": "source.cs",
40+
"path": "./syntaxes/csharp.tmLanguage.json"
41+
}
42+
],
43+
"snippets": [
44+
{
45+
"language": "csharp",
46+
"path": "./snippets/csharp.json"
47+
}
48+
]
49+
},
50+
"__metadata": {
51+
"id": "0e4a80b3-71f6-4711-9058-cfb60e9cb7d7",
52+
"publisherId": "12c4af94-ffe7-4454-a32d-3c35bf807c5d",
53+
"publisherDisplayName": "Maximetinu",
54+
"installedTimestamp": 1619221361841
55+
}
56+
}

0 commit comments

Comments
 (0)