Forgot the double backslash in the docs

This commit is contained in:
Kovid Goyal 2021-04-26 17:31:43 +05:30
parent 18c7ea50b4
commit 172023afca
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -19,12 +19,12 @@ If you want to make it case-insensitive, use::
To make it match only complete words, use:: To make it match only complete words, use::
map f1 toggle_marker regex 1 \bERROR\b map f1 toggle_marker regex 1 \\bERROR\\b
Suppose you want to highlight both :code:`ERROR` and :code:`WARNING`, case Suppose you want to highlight both :code:`ERROR` and :code:`WARNING`, case
insensitively:: insensitively::
map f1 toggle_marker iregex 1 \bERROR\b 2 \bWARNING\b map f1 toggle_marker iregex 1 \\bERROR\\b 2 \\bWARNING\\b
kitty supports up to 3 mark groups (the numbers in the commands above). You kitty supports up to 3 mark groups (the numbers in the commands above). You
can control the colors used for these groups in :file:`kitty.conf` with:: can control the colors used for these groups in :file:`kitty.conf` with::