Support $''-quoted strings.

This does not yet highlight backslash escapes within them.
This commit is contained in:
Daniel Shahaf
2015-09-10 19:58:02 +00:00
parent 6d93ea07fd
commit a8afbdf2f5
3 changed files with 39 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ This highlighter defines the following styles:
* `back-quoted-argument` - backquoted expressions (`` `foo` ``)
* `single-quoted-argument` - single quoted arguments (`` 'foo' ``)
* `double-quoted-argument` - double quoted arguments (`` "foo" ``)
* `dollar-quoted-argument` - dollar quoted arguments (`` $'foo' ``)
* `dollar-double-quoted-argument` - dollar double quoted arguments ($foo inside "")
* `back-double-quoted-argument` - back double quoted arguments (\x inside "")
* `assign` - variable assignments