Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit c7430e2

Browse files
committed
Update syntax highlighting
1 parent 2f1656a commit c7430e2

File tree

5 files changed

+477
-2
lines changed

5 files changed

+477
-2
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
__pycache__/
2-
*.py[cd]
2+
*.py[cd]
3+
*.egg-info/
4+
/dist/
5+
/build/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Press green `Clone or download` button (it's above file list), press `Download Z
2626

2727
You can check the full docs as [docs.md](docs.md).
2828

29-
Read how to use Sublime build system [here](sublime/README.md). For Sublime syntax highlight, see [this gist](https://gist.github.com/imachug/3ab11df5e91c8d815a8c63a76bb08b14).
29+
Read how to use Sublime Text build system and syntax highlighting [here](sublime/README.md).
3030

3131
## TL;DR aka tutorial
3232

sublime/PDPy11.sublime-color-scheme

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
{
2+
"name": "PDPy11",
3+
"author": "Ivanq",
4+
"globals": {
5+
"foreground": "hsl(0, 0%, 100%)",
6+
"background": "hsl(70, 8%, 15%)",
7+
"caret": "hsla(0, 0%, 100%, 0.9)",
8+
"block_caret": "hsla(0, 0%, 100%, 0.4)",
9+
"invisibles": "hsla(0, 0%, 100%, 0.35)",
10+
"line_highlight": "hsl(55, 11%, 22%)",
11+
"selection": "hsl(55, 8%, 26%)",
12+
"selection_border": "hsl(60, 17%, 11%)"
13+
},
14+
"rules": [
15+
{
16+
"name": "Storage type",
17+
"scope": "storage.type",
18+
"foreground": "hsl(150, 80%, 70%)"
19+
},
20+
{
21+
"name": "Control keyword",
22+
"scope": "keyword.control",
23+
"foreground": "hsl(30, 100%, 60%)",
24+
"font_style": "bold"
25+
},
26+
{
27+
"name": "Keyword",
28+
"scope": "keyword - (punctuation.definition.keyword, keyword.control), keyword.operator.word",
29+
"foreground": "hsl(0, 0%, 100%)",
30+
"font_style": "bold"
31+
},
32+
{
33+
"name": "Deprecated",
34+
"scope": "invalid.deprecated",
35+
"background": "hsl(300, 40%, 60%)"
36+
},
37+
{
38+
"name": "Illegal",
39+
"scope": "invalid.illegal",
40+
"background": "hsl(350, 100%, 65%)"
41+
},
42+
{
43+
"name": "Register",
44+
"scope": "variable.parameter.register",
45+
"foreground": "hsl(50, 100%, 50%)"
46+
},
47+
{
48+
"name": "Function declaration",
49+
"scope": "variable.function",
50+
"foreground": "hsl(200, 100%, 75%)"
51+
},
52+
{
53+
"name": "Constant",
54+
"scope": "entity.name",
55+
"foreground": "hsl(200, 100%, 75%)"
56+
},
57+
{
58+
"name": "String",
59+
"scope": "string",
60+
"foreground": "hsl(50, 70%, 70%)"
61+
},
62+
{
63+
"name": "Built-in constant",
64+
"scope": "constant.language",
65+
"foreground": "hsl(150, 80%, 70%)",
66+
"font_style": "bold"
67+
},
68+
{
69+
"name": "Character",
70+
"scope": "constant.character",
71+
"foreground": "hsl(150, 80%, 70%)"
72+
},
73+
{
74+
"name": "Built-in function",
75+
"scope": "support.function",
76+
"foreground": "hsl(150, 80%, 70%)"
77+
},
78+
{
79+
"name": "Number",
80+
"scope": "constant.numeric",
81+
"foreground": "hsl(80, 100%, 55%)"
82+
},
83+
{
84+
"name": "Built-in variable",
85+
"scope": "variable.language",
86+
"foreground": "hsl(10, 100%, 60%)",
87+
"font_style": "bold"
88+
},
89+
{
90+
"name": "Comment",
91+
"scope": "comment",
92+
"foreground": "hsl(50, 10%, 40%)",
93+
"font_style": "italic"
94+
}
95+
]
96+
}

0 commit comments

Comments
 (0)