
These tests are based on the patches contributed in those issues: commit 9d9df4fe80c878e460b38b5d8be76926a9e02286 (upstream/pr/167) Author: Miciah Masters <miciah.masters@gmail.com> AuthorDate: Thu Apr 23 20:28:24 2015 -0400 Commit: Miciah Dashiel Butler Masters <mmasters@redhat.com> CommitDate: Thu Apr 23 20:28:24 2015 -0400 Highlight comments M highlighters/main/main-highlighter.zsh A highlighters/main/test-data/comments.zsh commit d94f1a037f9829792b2faaf94efe4d86300369b7 (upstream/pr/163) Author: sonnym <michaud.sonny@gmail.com> AuthorDate: Fri Mar 6 18:27:57 2015 -0500 Commit: sonnym <michaud.sonny@gmail.com> CommitDate: Fri Mar 6 21:16:27 2015 -0500 highlight comments when interactive_comments is on M highlighters/main/main-highlighter.zsh A highlighters/main/test-data/comment-embedded.zsh A highlighters/main/test-data/comment-leading.zsh Patch-by: sonnym <michaud.sonny@gmail.com> Patch-by: Miciah Masters <miciah.masters@gmail.com> (corrected and refreshed for harness changes by me)
zsh-syntax-highlighting / highlighters
Syntax highlighting is done by pluggable highlighters:
- main - the base highlighter, and the only one active by default.
- brackets - matches brackets and parenthesis.
- pattern - matches user-defined patterns.
- cursor - matches the cursor position.
- root - triggered if the current user is root.
- line - applied to the whole command line
How to activate highlighters
To activate an highlighter, add it to the ZSH_HIGHLIGHT_HIGHLIGHTERS
array in ~/.zshrc
, for example:
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
How to tweak highlighters
Highlighters look up styles from the ZSH_HIGHLIGHT_STYLES
array. Navigate into each highlighter directory to see what styles it defines and how to configure it.
How to implement a new highlighter
To create your own myhighlighter highlighter:
-
Create your script at highlighters/myhighlighter/myhighlighter-highlighter.zsh.
-
Implement the
_zsh_highlight_myhighlighter_highlighter_predicate
function. This function must return 0 when the highlighter needs to be called, for example:_zsh_highlight_myhighlighter_highlighter_predicate() { # Call this highlighter in SVN repositories [[ -d .svn ]] }
-
Implement the
_zsh_highlight_myhighlighter_highlighter
function. This function does the actual syntax highlighting, by modifyingregion_highlight
, for example:_zsh_highlight_myhighlighter_highlighter() { # Colorize the whole buffer with blue background region_highlight+=(0 $#BUFFER bg=blue) }
-
Activate your highlighter in
~/.zshrc
:ZSH_HIGHLIGHT_HIGHLIGHTERS+=(myhighlighter)