Skip to content

Commit

Permalink
Better behavior with one context on each line
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-thompson committed Sep 22, 2023
1 parent 2cfbbc3 commit 2e76de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntaxes/fsh.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"name": "keyword.tokens.fsh"
}
},
"end": "((\"(?:\\\\.|[^\\\\\"])*\")|([^\"][^\\s,]+))\\s+(?!,)",
"end": "((\"(?:\\\\.|[^\\\\\"])*\")|([^\"\\s][^\\s,]+))\\s+(?!,)",
"endCaptures": {
"2": {
"name": "string.quoted.double.fsh"
Expand All @@ -54,7 +54,7 @@
{
"name": "string.quoted.double.fsh",
"begin": "\"",
"end": "\"(\\s*,\\s)",
"end": "\"\\s*(,)\\s*",
"endCaptures": {
"1": {
"name": "keyword.tokens.fsh"
Expand Down

0 comments on commit 2e76de8

Please sign in to comment.