Skip to content

Commit df704ba

Browse files
committed
Remove excess match group.
1 parent 9514ed3 commit df704ba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: syntaxes/aidl.tmLanguage.YAML-tmLanguage

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ repository:
146146
type:
147147
patterns:
148148
- include: '#annotation'
149-
- match: (\b(void|boolean|byte|char|int|long|float|double)\b)
149+
- match: \b(void|boolean|byte|char|int|long|float|double)\b
150150
name: storage.type.aidl
151-
- match: (\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\b)
151+
- match: \b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\b
152152
name: support.class.aidl
153153
- match: '\[\]'
154154
name: punctuation.aidl

Diff for: syntaxes/aidl.tmLanguage.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,11 @@
296296
"include": "#annotation"
297297
},
298298
{
299-
"match": "(\\b(void|boolean|byte|char|int|long|float|double)\\b)",
299+
"match": "\\b(void|boolean|byte|char|int|long|float|double)\\b",
300300
"name": "storage.type.aidl"
301301
},
302302
{
303-
"match": "(\\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\\b)",
303+
"match": "\\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\\b",
304304
"name": "support.class.aidl"
305305
},
306306
{

0 commit comments

Comments
 (0)