Skip to content

Commit 18b405f

Browse files
committed
Merge branch 'develop'
2 parents 8410a14 + d58fc82 commit 18b405f

26 files changed

+64
-27
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
with:
1515
python-version-file: '.python-version'
1616

17-
- name: Install dependencies
18-
run: python -m pip install -U -r requirements-dev.txt
17+
- name: Install Black
18+
run: python -m pip install -U black
1919

2020
- name: Check formatting
2121
run: python -m black --check .

icons/icons.json

Lines changed: 30 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3198,6 +3198,20 @@
31983198
}
31993199
]
32003200
},
3201+
"file_type_systemverilog": {
3202+
"color": "blue",
3203+
"syntaxes": [
3204+
{
3205+
"extensions": [
3206+
"sv",
3207+
"svh",
3208+
"vh"
3209+
],
3210+
"name": "Plain Text (SystemVerilog)",
3211+
"scope": "source.systemverilog"
3212+
}
3213+
]
3214+
},
32013215
"file_type_taskfile": {
32023216
"aliases": [
32033217
{
@@ -3238,10 +3252,12 @@
32383252
"syntaxes": [
32393253
{
32403254
"extensions": [
3241-
"tailwind.css"
3255+
"tailwind.css",
3256+
"tailwind.pcss",
3257+
"tailwind.postcss"
32423258
],
32433259
"name": "Plain Text (Tailwind CSS)",
3244-
"scope": "source.css.tailwind"
3260+
"scope": "source.css.tailwind, source.postcss.tailwind"
32453261
}
32463262
]
32473263
},
@@ -3552,7 +3568,6 @@
35523568
"syntaxes": [
35533569
{
35543570
"extensions": [
3555-
"v",
35563571
"vlang"
35573572
],
35583573
"name": "Plain Text (V)",
@@ -3620,6 +3635,18 @@
36203635
],
36213636
"color": "sky"
36223637
},
3638+
"file_type_verilog": {
3639+
"color": "blue",
3640+
"syntaxes": [
3641+
{
3642+
"extensions": [
3643+
"v"
3644+
],
3645+
"name": "Plain Text (Verilog)",
3646+
"scope": "source.verilog"
3647+
}
3648+
]
3649+
},
36233650
"file_type_vhdl": {
36243651
"color": "blue",
36253652
"syntaxes": [
@@ -3632,24 +3659,6 @@
36323659
],
36333660
"name": "Plain Text (VHDL)",
36343661
"scope": "source.vhdl"
3635-
},
3636-
{
3637-
"extensions": [
3638-
"sv",
3639-
"v",
3640-
"svh",
3641-
"vh"
3642-
],
3643-
"name": "Plain Text (SystemVerilog)",
3644-
"scope": "source.systemverilog"
3645-
},
3646-
{
3647-
"extensions": [
3648-
"v",
3649-
"V"
3650-
],
3651-
"name": "Plain Text (Verilog)",
3652-
"scope": "source.verilog"
36533662
}
36543663
]
36553664
},
496 Bytes
Loading
1 KB
Loading
1.53 KB
Loading

icons/multi/file_type_verilog.png

444 Bytes
Loading

icons/multi/file_type_verilog@2x.png

747 Bytes
Loading

icons/multi/file_type_verilog@3x.png

1.13 KB
Loading
361 Bytes
Loading
770 Bytes
Loading
1.19 KB
Loading

icons/single/file_type_verilog.png

335 Bytes
Loading

icons/single/file_type_verilog@2x.png

569 Bytes
Loading

icons/single/file_type_verilog@3x.png

892 Bytes
Loading

icons/svg/file_type_systemverilog.svg

Lines changed: 3 additions & 0 deletions
Loading

icons/svg/file_type_verilog.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>scope</key>
5+
<string>source.systemverilog</string>
6+
<key>settings</key>
7+
<dict>
8+
<key>icon</key>
9+
<string>file_type_systemverilog</string>
10+
</dict>
11+
</dict>
12+
</plist>

preferences/file_type_tailwind.tmPreferences

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plist version="1.0">
33
<dict>
44
<key>scope</key>
5-
<string>source.css.tailwind, source.js.tailwind, source.ts.tailwind</string>
5+
<string>source.css.tailwind, source.js.tailwind, source.postcss.tailwind, source.ts.tailwind</string>
66
<key>settings</key>
77
<dict>
88
<key>icon</key>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>scope</key>
5+
<string>source.verilog</string>
6+
<key>settings</key>
7+
<dict>
8+
<key>icon</key>
9+
<string>file_type_verilog</string>
10+
</dict>
11+
</dict>
12+
</plist>

preferences/file_type_vhdl.tmPreferences

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plist version="1.0">
33
<dict>
44
<key>scope</key>
5-
<string>source.systemverilog, source.verilog, source.vhdl</string>
5+
<string>source.vhdl</string>
66
<key>settings</key>
77
<dict>
88
<key>icon</key>

requirements-dev.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
pip
2-
31
# Build
42
cairosvg >= 2.7.0
53
pypng >= 0.20220715.0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/file_type_vhdl.vh

Whitespace-only changes.

0 commit comments

Comments
 (0)