Skip to content

Commit e1f6be7

Browse files
committed
v0.6.1 Enable GDB log parser
for issue #41
1 parent af1a2c1 commit e1f6be7

File tree

3 files changed

+53
-34
lines changed

3 files changed

+53
-34
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
88
Disclaimer: for the moment, all the commands that I use are rendered.
99
Commits will slow down. May not update at all.
1010

11-
## [0.6.0] 2024-12-14
11+
## [0.6.1] 2024-12-14
1212
### modified
1313
* rendering on option starting with '-' like for dissably-flavor
1414
### added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
VSCode grammar extension to color higlight scripts for GDB
99

10-
## [0.6.0] 2024-12-14
10+
## [0.6.1] 2024-12-14
1111
### modified
1212
* rendering on option starting with '-' like for dissably-flavor
1313
### added

package.json

Lines changed: 51 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,53 @@
11
{
2-
"name": "gdb-syntax",
3-
"publisher": "pierre-payen",
4-
"displayName": "GDB syntax",
5-
"description": "Syntax color for GDB command",
6-
"repository": "https://github.com/pirpyn/gdb-syntax-vscode",
7-
"icon" : "images/archer.png",
8-
"version": "0.5.7",
9-
"engines": {
10-
"vscode": "^1.45.0"
11-
},
12-
"categories": [
13-
"Programming Languages"
14-
],
15-
"license": "GNU GPLv3",
16-
"contributes": {
17-
"languages": [{
18-
"id": "gdb",
19-
"extensions": [".gdb",".gdbinit"],
20-
"configuration": "./language-configuration.json"
21-
}],
22-
"grammars": [
23-
{
24-
"language": "gdb",
25-
"scopeName": "source.gdb",
26-
"path": "./syntaxes/gdb.tmLanguage.json",
27-
"embeddedLanguages": {
28-
"meta.block.python.gdb": "python",
29-
"meta.line.python.gdb": "python"
30-
}
31-
}
32-
]
33-
}
2+
"name": "gdb-syntax",
3+
"publisher": "pierre-payen",
4+
"displayName": "GDB syntax",
5+
"description": "Syntax color for GDB command",
6+
"repository": "https://github.com/pirpyn/gdb-syntax-vscode",
7+
"icon" : "images/archer.png",
8+
"version": "0.6.1",
9+
"engines": {
10+
"vscode": "^1.45.0"
11+
},
12+
"categories": [
13+
"Programming Languages"
14+
],
15+
"license": "GNU GPLv3",
16+
"contributes": {
17+
"languages": [
18+
{
19+
"id": "gdb",
20+
"extensions": [
21+
".gdb",
22+
".gdbinit"
23+
],
24+
"configuration": "./language-configuration.json"
25+
},
26+
{
27+
"id": "gdb-log",
28+
"extensions": [
29+
".gdb-log",
30+
".gdb.log",
31+
".gdblog"
32+
],
33+
"configuration": "./language-configuration.json"
34+
}
35+
],
36+
"grammars": [
37+
{
38+
"language": "gdb",
39+
"scopeName": "source.gdb",
40+
"path": "./syntaxes/gdb.tmLanguage.json",
41+
"embeddedLanguages": {
42+
"meta.block.python.gdb": "python",
43+
"meta.line.python.gdb": "python"
44+
}
45+
},
46+
{
47+
"language": "gdb-log",
48+
"scopeName": "source.gdb.log",
49+
"path": "./syntaxes/gdb-log.tmLanguage.json"
50+
}
51+
]
52+
}
3453
}

0 commit comments

Comments
 (0)