2012-06-14 21:24:40 +00:00
|
|
|
Syntax Highlighting
|
|
|
|
===================
|
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
Integrates [zsh-syntax-highlighting][1] into Prezto.
|
2012-06-14 21:24:40 +00:00
|
|
|
|
|
|
|
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][1] project according to its rules and regulations.
|
|
|
|
This module will be synchronized against it.
|
|
|
|
|
|
|
|
Settings
|
|
|
|
--------
|
|
|
|
|
|
|
|
### Highlighting
|
|
|
|
|
2012-09-03 20:38:18 +00:00
|
|
|
To enable highlighting for this module only, add the following line to
|
|
|
|
*zpreztorc*:
|
2012-06-14 21:24:40 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ':prezto:module:syntax-highlighting' color 'yes'
|
2012-06-14 21:24:40 +00:00
|
|
|
|
|
|
|
### Highlighters
|
|
|
|
|
|
|
|
Syntax highlighting is accomplished by pluggable [highlighters][2]. This module
|
2014-09-12 14:39:38 +00:00
|
|
|
only enables the *main* highlighter by default.
|
2012-06-14 21:24:40 +00:00
|
|
|
|
2012-09-03 20:38:18 +00:00
|
|
|
To enable all highlighters, add the following to *zpreztorc*:
|
2012-06-14 21:24:40 +00:00
|
|
|
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ':prezto:module:syntax-highlighting' highlighters \
|
2012-06-14 21:24:40 +00:00
|
|
|
'main' \
|
|
|
|
'brackets' \
|
|
|
|
'pattern' \
|
|
|
|
'cursor' \
|
|
|
|
'root'
|
|
|
|
|
2012-12-23 20:50:12 +00:00
|
|
|
### 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'
|
|
|
|
|
2012-06-14 21:24:40 +00:00
|
|
|
Authors
|
|
|
|
-------
|
|
|
|
|
|
|
|
*The authors of this module should be contacted via the [issue tracker][3].*
|
|
|
|
|
|
|
|
- [Sorin Ionescu](https://github.com/sorin-ionescu)
|
|
|
|
|
|
|
|
[1]: https://github.com/zsh-users/zsh-syntax-highlighting
|
|
|
|
[2]: https://github.com/zsh-users/zsh-syntax-highlighting/tree/master/highlighters
|
2012-09-03 20:08:39 +00:00
|
|
|
[3]: https://github.com/sorin-ionescu/prezto/issues
|
2012-06-14 21:24:40 +00:00
|
|
|
|