Skip to content

Commit 9ba4596

Browse files
committed
enh(scheme) allow [] argument lists
1 parent 26a08a5 commit 9ba4596

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Language improvements:
1212

1313
Grammar improvements:
1414

15+
- enh(scheme) Allow `[]` for argument lists [Josh Goebel][]
1516
- enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
1617
- Adds support for Date data types, see (#2775)
1718
- Adds support for `REM` comments and fixes `'''` doctags (#2875) (#2851)

src/languages/scheme.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export default function(hljs) {
127127
NAME,
128128
{
129129
begin: /\(/, end: /\)/, endsParent: true,
130+
begin: /\[/, end: /\]/, endsParent: true,
130131
contains: [IDENT],
131132
}
132133
]

0 commit comments

Comments
 (0)