Skip to content

Commit 368efc6

Browse files
Version 0.3.3
1 parent a967567 commit 368efc6

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Syntax Highlighter Change Log
22

3+
## **Version 0.3.3**
4+
#### Changes:
5+
* The latest versions of tree-sitter-cpp/c
6+
* C++: fix highlighting of `virtual` method definitions
7+
* C++: fix highlighting of `delete` in method definitions
8+
* C++: fix highlighting of `throw` expressions
9+
* C++/C: highlighting of `__attribute__` as *modifier*
10+
11+
312
## **Version 0.3.2**
413
#### Changes:
514
* Go: highlighting of punctuation
@@ -11,9 +20,9 @@
1120
## **Version 0.3.1**
1221
#### Changes:
1322
* Demo of {Syntax Highlighter} in README.md
14-
* C++: `noexcept` keyword is highlighted
15-
* C++: definition of operator (e.g. `operator!()`) is highlighted
16-
* C++: `default` is highlighted as *modifier* instead of *control*
23+
* C++: highlighting of `noexcept` keyword
24+
* C++: highlighting of operator definitions (e.g. `operator!()`)
25+
* C++: highlighting `default` as *modifier* instead of *control*
1726

1827

1928
## **Version 0.3.0**

grammars/cpp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"\"typename\"": "control",
7171
"\"try\"": "control",
7272
"\"catch\"": "control",
73-
"\"trow\"": "control",
73+
"\"throw\"": "control",
7474

7575
"\"sizeof\"": "operator",
7676
"\"new\"": "operator",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Syntax Highlighter",
44
"description": "Syntax highlighting based on Tree-sitter",
55
"homepage": "https://github.com/EvgeniyPeshkov/syntax-highlighter",
6-
"version": "0.3.2",
6+
"version": "0.3.3",
77
"publisher": "evgeniypeshkov",
88
"license": "MIT",
99
"icon": "images/syntax.png",

0 commit comments

Comments
 (0)