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
The regex highlighting system is not yet complete. I only added the support for single line matches. Multiline matches like multiline comments and strings need to be implemented by handling the End case of the RegexpRegion struct. Also, implement handling the Skip, Content, and Specials fields as well, for added control when matching strings and the like.
For example, matching a multiline string with control sequences (without highlighting the control sequences):
RegexpRegion:
Start: "\"",
End: "\"", // match to end of quotationSkip: "\\[tvrnb]", // other escape sequences elidedContent: "[characters][numbers]", // Everything not a string
The text was updated successfully, but these errors were encountered:
The regex highlighting system is not yet complete. I only added the support for single line matches. Multiline matches like multiline comments and strings need to be implemented by handling the End case of the RegexpRegion struct. Also, implement handling the Skip, Content, and Specials fields as well, for added control when matching strings and the like.
For example, matching a multiline string with control sequences (without highlighting the control sequences):
The text was updated successfully, but these errors were encountered: