This commit is contained in:
Daniel Shahaf 2015-11-27 03:48:03 +00:00
commit b7294588c2
3 changed files with 22 additions and 14 deletions

View File

@ -45,5 +45,5 @@ How to tweak
------------ ------------
Syntax highlighting is done by pluggable highlighter scripts. See the Syntax highlighting is done by pluggable highlighter scripts. See the
[`highlighters` directory](./highlighters) for documentation and configuration [documentation on highlighters](docs/highlighters.md) for details and
settings. configuration settings.

View File

@ -3,12 +3,12 @@ zsh-syntax-highlighting / highlighters
Syntax highlighting is done by pluggable highlighters: Syntax highlighting is done by pluggable highlighters:
* `main` - the base highlighter, and the only one active by default. * `main` - the base highlighter, and the only one [active by default](highlighters/main.md).
* `brackets` - matches brackets and parenthesis. * `brackets` - [matches brackets](highlighters/brackets.md) and parenthesis.
* `pattern` - matches user-defined patterns. * `pattern` - matches [user-defined patterns](highlighters/pattern.md).
* `cursor` - matches the cursor position. * `cursor` - matches [the cursor](highlighters/cursor.md) position.
* `root` - triggered if the current user is root. * `root` - highlights the whole command line [if the current user is root](highlighters/root.md).
* `line` - applied to the whole command line * `line` - applied to [the whole command line](highlighters/line.md).
How to activate highlighters How to activate highlighters
@ -27,15 +27,16 @@ How to tweak highlighters
------------------------- -------------------------
Highlighters look up styles from the `ZSH_HIGHLIGHT_STYLES` associative array. Highlighters look up styles from the `ZSH_HIGHLIGHT_STYLES` associative array.
Navigate into each highlighter directory to see what styles (keys) it defines; Navigate into the [individual highlighters' documentation](highlighters/) to
the syntax for values is the same as the syntax of "types of highlighting" of see what styles (keys) each highlighter defines; the syntax for values is the
the zsh builtin `$zle_highlight` array, which is documented in [the `zshzle(1)` same as the syntax of "types of highlighting" of the zsh builtin
manual page][zshzle-Character-Highlighting]. `$zle_highlight` array, which is documented in [the `zshzle(1)` manual
page][zshzle-Character-Highlighting].
[zshzle-Character-Highlighting]: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting [zshzle-Character-Highlighting]: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting
Some highlighters support additional configuration parameters; see each Some highlighters support additional configuration parameters; see each
highlighter's documentation for details. highlighter's documentation for details and examples.
How to implement a new highlighter How to implement a new highlighter

View File

@ -1 +0,0 @@
../docs/highlighters.md

8
highlighters/README.md Normal file
View File

@ -0,0 +1,8 @@
zsh-syntax-highlighting / highlighters
======================================
Navigate into the individual highlighters' documentation to see
what styles (`$ZSH_HIGHLIGHT_STYLES` keys) each highlighter defines.
Refer to the [documentation on highlighters](../docs/highlighters.md) for further
information.