zsh-syntax-highlighting/docs/highlighters/pattern.md

25 lines
831 B
Markdown
Raw Permalink Normal View History

2015-11-18 04:11:09 +01:00
zsh-syntax-highlighting / highlighters / pattern
------------------------------------------------
2015-11-24 08:43:03 +01:00
This is the `pattern` highlighter, that highlights user-defined patterns.
2015-11-18 04:11:09 +01:00
### How to tweak it
To use this highlighter, associate patterns with styles in the
`ZSH_HIGHLIGHT_PATTERNS` associative array, for example in `~/.zshrc`:
2015-11-18 04:11:09 +01:00
```zsh
# Declare the variable
typeset -A ZSH_HIGHLIGHT_PATTERNS
# To have commands starting with `rm -rf` in red:
ZSH_HIGHLIGHT_PATTERNS+=('rm -rf *' 'fg=white,bold,bg=red')
```
2015-11-18 04:11:09 +01:00
The syntax for values is the same as the syntax of "types of highlighting" of
the zsh builtin `$zle_highlight` array, which is documented in [the `zshzle(1)`
manual page][zshzle-Character-Highlighting].
[zshzle-Character-Highlighting]: https://zsh.sourceforge.io/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting