Allow spaces at points in array

This commit is contained in:
confused-Techie 2023-06-25 23:46:46 -07:00
parent a9a5e4f76c
commit 4d2481694b

View File

@ -95,11 +95,11 @@
'values':
'patterns': [
{
'begin': '\\['
'begin': '\\[\\s*'
'beginCaptures':
'0':
'name': 'punctuation.definition.array.begin.toml'
'end': '\\]'
'end': '\\s*\\]'
'endCaptures':
'0':
'name': 'punctuation.definition.array.end.toml'
@ -108,7 +108,7 @@
'include': '#comment'
}
{
'match': ','
'match': ',\\s*'
'name': 'punctuation.definition.separator.comma.toml'
}
{