|
1 | 1 | { |
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 | + } |
34 | 53 | } |
0 commit comments