You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue
Properties files support multi-line values by using a \ to escape the newline. This works correctly for most cases, but breaks when the last character is an escaped \ (i.e. \\), which might be the case in a Windows path (folder-path = C:\\some\\path\\)
Which language seems to have the issue? properties
Are you using highlight or highlightAuto?
highlight
Sample Code to Reproduce
a = a1\
a2
b = b\\
c = c
Expected behavior
The text was updated successfully, but these errors were encountered:
Thanks, I feel like we've fixed something like this in other grammars... probably just a matter of adding a separate rule to silently eat \\ so it's not counted by the \ before the end of line rule?
Describe the issue
Properties files support multi-line values by using a
\
to escape the newline. This works correctly for most cases, but breaks when the last character is an escaped\
(i.e.\\
), which might be the case in a Windows path (folder-path = C:\\some\\path\\
)Which language seems to have the issue?
properties
Are you using
highlight
orhighlightAuto
?highlight
Sample Code to Reproduce
Expected behavior
The text was updated successfully, but these errors were encountered: