Stopped "keyword" match from taking \n

This commit is contained in:
kevin 2023-12-06 13:08:45 -05:00
parent bec5460395
commit d4a970e1a8

View file

@ -622,7 +622,7 @@ export default {
greedy: true
},
"keyword": {
pattern: /^[^ :=]*(?=[:=])/m,
pattern: /^\w*(?=[:=])/m,
greedy: true
},
"value": {