From 1a9264bc661b3d52756916bf9ec3f41687d64db2 Mon Sep 17 00:00:00 2001 From: Leonardo Gama Date: Tue, 21 Sep 2021 10:52:48 -0300 Subject: [PATCH] docs: Add `regexp` to the list of built-in highlighters --- docs/highlighters.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/highlighters.md b/docs/highlighters.md index 1b4992b..544dffb 100644 --- a/docs/highlighters.md +++ b/docs/highlighters.md @@ -6,6 +6,7 @@ Syntax highlighting is done by pluggable highlighters: * `main` - the base highlighter, and the only one [active by default][main]. * `brackets` - [matches brackets][brackets] and parenthesis. * `pattern` - matches [user-defined patterns][pattern]. +* `regexp` - matches [user-defined regular expressions][regexp]. * `cursor` - matches [the cursor position][cursor]. * `root` - highlights the whole command line [if the current user is root][root]. * `line` - applied to [the whole command line][line]. @@ -13,6 +14,7 @@ Syntax highlighting is done by pluggable highlighters: [main]: highlighters/main.md [brackets]: highlighters/brackets.md [pattern]: highlighters/pattern.md +[regexp]: highlighters/regexp.md [cursor]: highlighters/cursor.md [root]: highlighters/root.md [line]: highlighters/line.md