mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-01 09:19:25 +00:00
committed by
Sorin Ionescu
parent
5232191cbe
commit
fb9a20591f
@ -1,7 +1,7 @@
|
||||
Syntax Highlighting
|
||||
===================
|
||||
|
||||
Integrates [zsh-syntax-highlighting][1] into Oh My Zsh.
|
||||
Integrates [zsh-syntax-highlighting][1] 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
|
||||
@ -21,7 +21,7 @@ Settings
|
||||
|
||||
To enable highlighting for this module only, add the following line to *zshrc*:
|
||||
|
||||
zstyle ':omz:module:syntax-highlighting' color 'yes'
|
||||
zstyle ':prezto:module:syntax-highlighting' color 'yes'
|
||||
|
||||
### Highlighters
|
||||
|
||||
@ -30,7 +30,7 @@ enables the *main*, *brackets*, and *cursor* highlighters by default.
|
||||
|
||||
To enable all highlighters, add the following to *zshrc*:
|
||||
|
||||
zstyle ':omz:module:syntax-highlighting' highlighters \
|
||||
zstyle ':prezto:module:syntax-highlighting' highlighters \
|
||||
'main' \
|
||||
'brackets' \
|
||||
'pattern' \
|
||||
@ -46,5 +46,5 @@ Authors
|
||||
|
||||
[1]: https://github.com/zsh-users/zsh-syntax-highlighting
|
||||
[2]: https://github.com/zsh-users/zsh-syntax-highlighting/tree/master/highlighters
|
||||
[3]: https://github.com/sorin-ionescu/oh-my-zsh/issues
|
||||
[3]: https://github.com/sorin-ionescu/prezto/issues
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
#
|
||||
# Integrates zsh-syntax-highlighting into Oh My Zsh.
|
||||
# Integrates zsh-syntax-highlighting into Prezto.
|
||||
#
|
||||
# Authors:
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
# Return if requirements are not found.
|
||||
if ! zstyle -t ':omz:module:syntax-highlighting' color; then
|
||||
if ! zstyle -t ':prezto:module:syntax-highlighting' color; then
|
||||
return 1
|
||||
fi
|
||||
|
||||
@ -14,7 +14,7 @@ fi
|
||||
source "${0:h}/external/zsh-syntax-highlighting.zsh"
|
||||
|
||||
# Set the highlighters.
|
||||
zstyle -a ':omz:module:syntax-highlighting' highlighters 'ZSH_HIGHLIGHT_HIGHLIGHTERS'
|
||||
zstyle -a ':prezto:module:syntax-highlighting' highlighters 'ZSH_HIGHLIGHT_HIGHLIGHTERS'
|
||||
if (( ${#ZSH_HIGHLIGHT_HIGHLIGHTERS[@]} == 0 )); then
|
||||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets cursor)
|
||||
fi
|
||||
|
Reference in New Issue
Block a user