Skip to content

Commit

Permalink
add highlighting for immutable
Browse files Browse the repository at this point in the history
prep v0.0.7
  • Loading branch information
tintinweb committed Jan 17, 2023
1 parent d453b62 commit 886361b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the "vscode-solidity-language" extension will be documented in this file.

## v0.0.7

- new: add highlighting for `immutable` (safe keywords; green)

## v0.0.6

- fix: match ucase const - #1
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "tintinweb",
"icon": "images/icon.png",
"preview": true,
"version": "0.0.6",
"version": "0.0.7",
"engines": {
"vscode": "^1.60.0"
},
Expand Down Expand Up @@ -79,6 +79,6 @@
]
},
"devDependencies": {
"@vscode/test-web": "^0.0.15"
"@vscode/test-web": "^0.0.34"
}
}
2 changes: 1 addition & 1 deletion src/syntaxes/solidity.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@
"declaration-visibility": {
"patterns": [
{
"match": "\\b(private|internal|constant|pure|view|nonpayable|indexed)\\b",
"match": "\\b(private|internal|constant|immutable|pure|view|nonpayable|indexed)\\b",
"name": "storage.type.modifier.keyword.solidity"
},
{
Expand Down

0 comments on commit 886361b

Please sign in to comment.