Skip to content
Snippets Groups Projects
Commit 63b4bb1e authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix escaping of percent signs in the shell lexer


Of course, we do have cases where we want to escape the percent signs,
and our regexes were not fully correct for this case.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
parent 7142485a
No related branches found
No related tags found
No related merge requests found
......@@ -46,12 +46,13 @@ class ShellExampleLexer(RegexLexer):
# switch to state input on '$ ' at the start of the line
(r"^\$ ", Text, "input"),
(r"\s+", Text),
(r"[^#%\s]+", Text),
(r"[^#%\s\\]+", Text),
(r"\\", Text),
],
"input": [
include("comments"),
include("userinput"),
(r"[^%\\\s]+", Generic.Strong),
(r"[^#%\s\\]+", Generic.Strong),
(r"\\\n", Generic.Strong),
(r"\\", Generic.Strong),
# switch to prev state at non-escaped new-line
......@@ -62,7 +63,7 @@ class ShellExampleLexer(RegexLexer):
(r"#.*\n", Comment.Single),
],
"userinput": [
(r"\\%", Text),
(r"(\\)(%)", bygroups(None, Text)),
(r"(%)([^%]*)(%)", bygroups(None, Name.Variable, None)),
],
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment