File tree 5 files changed +18
-8
lines changed
5 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.2.0
4
+
5
+ Changed language ID to avoid clash with Chrome DevTools PDL.
6
+
3
7
## 0.1.0
4
8
5
9
- Initial release, TextMate grammar for PDL syntax highlighting.
Original file line number Diff line number Diff line change 1
1
# PDL language support
2
2
3
- Syntax highlighting for Packet Description Language, as used for various Android networking
4
- components.
3
+ Syntax highlighting for
4
+ [ Packet Description Language] ( https://android.googlesource.com/platform/packages/modules/Bluetooth/+/master/tools/pdl/doc/reference.md ) ,
5
+ as used for various Android networking components.
5
6
6
7
This is not an officially supported Google product.
7
8
8
9
## Release Notes
9
10
11
+ ### 0.2.0
12
+
13
+ Changed language ID to avoid clash with Chrome DevTools PDL.
14
+
10
15
### 0.1.0
11
16
12
17
Initial release with a basic PDL grammar for syntax highlighting.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pdl-language" ,
3
- "displayName" : " PDL " ,
3
+ "displayName" : " Packet Description Language " ,
4
4
"description" : " Syntax highlighting for the Packet Description Language." ,
5
- "version" : " 0.1 .0" ,
5
+ "version" : " 0.2 .0" ,
6
6
"engines" : {
7
7
"vscode" : " ^1.52.0"
8
8
},
22
22
"contributes" : {
23
23
"languages" : [
24
24
{
25
- "id" : " pdl " ,
25
+ "id" : " pdl_android " ,
26
26
"aliases" : [
27
+ " Packet Description Language" ,
27
28
" PDL" ,
28
29
" pdl"
29
30
],
35
36
],
36
37
"grammars" : [
37
38
{
38
- "language" : " pdl " ,
39
+ "language" : " pdl_android " ,
39
40
"scopeName" : " source.pdl" ,
40
41
"path" : " ./syntaxes/pdl.tmLanguage.json"
41
42
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ $schema: 'https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlangu
16
16
fileTypes :
17
17
- pdl
18
18
scopeName : source.pdl
19
- name : PDL
19
+ name : Packet Description Language
20
20
foldingStartMarker : ' \{\s*$'
21
21
foldingStopMarker : ' ^\s*\}'
22
22
patterns :
Original file line number Diff line number Diff line change 4
4
" pdl"
5
5
],
6
6
"scopeName" : " source.pdl" ,
7
- "name" : " PDL " ,
7
+ "name" : " Packet Description Language " ,
8
8
"foldingStartMarker" : " \\ {\\ s*$" ,
9
9
"foldingStopMarker" : " ^\\ s*\\ }" ,
10
10
"patterns" : [
You can’t perform that action at this time.
0 commit comments