Skip to content

Commit

Permalink
Merge pull request eirikpre#218 from joecrop/rel-0-13-8
Browse files Browse the repository at this point in the history
updated icons to look better in light mode and added basic syntax highlighting for .f files
  • Loading branch information
joecrop authored Jan 12, 2024
2 parents 526ffdf + e6c1098 commit 5e82c44
Show file tree
Hide file tree
Showing 19 changed files with 141 additions and 28 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ More details can be found on the [Releases](https://github.com/eirikpre/VSCode-S
- 💡 Back-end Language Server for Systemverilog
- 💡 Complete syntax highlighting

### [0.13.8]

- Corrected icons for light themes by `joecrop`
- Added basic syntax highlighting for .f files by `joecrop`

### [0.13.7]

- Added missing filetype icons by `joecrop`
Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions configs/verilogFileList.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"comments": {
"lineComment": ["//", "#"]
}
}
51 changes: 36 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "systemverilog",
"displayName": "SystemVerilog - Language Support",
"description": "Language support for Verilog and SystemVerilog.",
"version": "0.13.7",
"version": "0.13.8",
"publisher": "eirikpre",
"author": {
"name": "Eirik Prestegårdshus",
Expand Down Expand Up @@ -55,10 +55,10 @@
"extensions": [
".sv"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/sv.svg",
"dark": "./resources/sv.svg"
"light": "./resources/sv_light.svg",
"dark": "./resources/sv_dark.svg"
}
},
{
Expand All @@ -72,10 +72,10 @@
"extensions": [
".svh"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/svh.svg",
"dark": "./resources/svh.svg"
"light": "./resources/svh_light.svg",
"dark": "./resources/svh_dark.svg"
}
},
{
Expand All @@ -87,10 +87,10 @@
"extensions": [
".v"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/v.svg",
"dark": "./resources/v.svg"
"light": "./resources/v_light.svg",
"dark": "./resources/v_dark.svg"
}
},
{
Expand All @@ -102,10 +102,10 @@
"extensions": [
".vh"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/vh-light.svg",
"dark": "./resources/vh-dark.svg"
"light": "./resources/vh_light.svg",
"dark": "./resources/vh_dark.svg"
}
},
{
Expand All @@ -118,7 +118,7 @@
"extensions": [
".vams"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/vams.svg",
"dark": "./resources/vams.svg"
Expand All @@ -134,11 +134,27 @@
"extensions": [
".va"
],
"configuration": "./language-configuration.json",
"configuration": "./configs/systemVerilog.json",
"icon": {
"light": "./resources/va.svg",
"dark": "./resources/va.svg"
}
},
{
"id": "verilog-filelist",
"aliases": [
"Verilog Filelist",
"verilog-filelist",
"Dot-F File"
],
"extensions": [
".f"
],
"configuration": "./configs/verilogFileList.json",
"icon": {
"light": "./resources/f_light.svg",
"dark": "./resources/f_dark.svg"
}
}
],
"snippets": [
Expand Down Expand Up @@ -200,6 +216,11 @@
"meta.embedded.block.systemverilog": "source.systemverilog",
"meta.embedded.block.verilog": "source.verilog"
}
},
{
"language": "verilog-filelist",
"scopeName": "source.verilog-filelist",
"path": "./syntaxes/verilog-filelist.json"
}
],
"configuration": [
Expand Down
Binary file added resources/VSCode_SystemVerilog_Icons.fig
Binary file not shown.
4 changes: 4 additions & 0 deletions resources/f_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions resources/f_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion resources/sv.svg → resources/sv_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/sv_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions resources/svh.svg → resources/svh_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions resources/vh-dark.svg → resources/svh_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion resources/v.svg → resources/v_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/v_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion resources/va.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion resources/vams.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5e82c44

Please sign in to comment.