prezto/modules/syntax-highlighting
Ellis Tsung f23a1960f8 Add pattern tweaking to syntax-highlighting
Enable setting patterns in *zpreztorc* like styles are set.
2015-04-15 19:55:44 -04:00
..
external@3dc5741900 Update external syntax-highlighting 2014-10-05 20:16:26 -04:00
init.zsh Add pattern tweaking to syntax-highlighting 2015-04-15 19:55:44 -04:00
README.md Add pattern tweaking to syntax-highlighting 2015-04-15 19:55:44 -04:00

Syntax Highlighting

Integrates zsh-syntax-highlighting into Prezto.

This module should be loaded second to last, where last is the prompt module, unless used in conjuncture with the history-substring-search module where it must be loaded before it.

Contributors

New features and bug fixes should be submitted to the zsh-syntax-highlighting project according to its rules and regulations. This module will be synchronized against it.

Settings

Highlighting

To enable highlighting for this module only, add the following line to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' color 'yes'

Highlighters

Syntax highlighting is accomplished by pluggable highlighters. This module only enables the main highlighter by default.

To enable all highlighters, add the following to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' highlighters \
  'main' \
  'brackets' \
  'pattern' \
  'cursor' \
  'root'

Highlighting Styles

Each syntax highlighter defines styles used to highlight tokens.

To highlight, for example, builtins, commands, and functions in blue instead of green, add the following to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' styles \
  'builtin' 'bg=blue' \
  'command' 'bg=blue' \
  'function' 'bg=blue'

Highlighting Patterns

The pattern highlighter enables highlighting user defined patterns.

For example, to highlight commands starting with rm -rf in red, add the following to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' patterns \
  'rm -rf *' 'fg=white,bold,bg=red'

Authors

The authors of this module should be contacted via the issue tracker.