main: Add ' helper function

This commit is contained in:
Matthew Martin
2017-11-14 22:43:40 -06:00
parent dcb115c74c
commit 25ae1c0121
2 changed files with 25 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ This highlighter defines the following styles:
* `single-quoted-argument` - single quoted arguments (`` 'foo' ``)
* `double-quoted-argument` - double quoted arguments (`` "foo" ``)
* `dollar-quoted-argument` - dollar quoted arguments (`` $'foo' ``)
* `rc-quote` - two single quotes inside single quotes when the `RC_QUOTES` option is set (`` 'foo''bar' ``)
* `dollar-double-quoted-argument` - parameter expansion inside double quotes (`$foo` inside `""`)
* `back-double-quoted-argument` - back double quoted arguments (`\x` inside `""`)
* `back-dollar-quoted-argument` - back dollar quoted arguments (`\x` inside `$''`)