mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 13:58:00 +00:00
Allow syntax highlighting pattern styles (#1192)
This commit is contained in:
parent
fb6f3f7ee9
commit
1c0f95c08e
@ -26,3 +26,11 @@ for syntax_highlighting_style in "${(k)syntax_highlighting_styles[@]}"; do
|
|||||||
ZSH_HIGHLIGHT_STYLES[$syntax_highlighting_style]="$syntax_highlighting_styles[$syntax_highlighting_style]"
|
ZSH_HIGHLIGHT_STYLES[$syntax_highlighting_style]="$syntax_highlighting_styles[$syntax_highlighting_style]"
|
||||||
done
|
done
|
||||||
unset syntax_highlighting_style{s,}
|
unset syntax_highlighting_style{s,}
|
||||||
|
|
||||||
|
# Set pattern highlighting styles.
|
||||||
|
typeset -A syntax_pattern_styles
|
||||||
|
zstyle -a ':prezto:module:syntax-highlighting' pattern 'syntax_pattern_styles'
|
||||||
|
for syntax_pattern_style in "${(k)syntax_pattern_styles[@]}"; do
|
||||||
|
ZSH_HIGHLIGHT_PATTERNS[$syntax_pattern_style]="$syntax_pattern_styles[$syntax_pattern_style]"
|
||||||
|
done
|
||||||
|
unset syntax_pattern_style{s,}
|
||||||
|
@ -140,6 +140,10 @@ zstyle ':prezto:module:prompt' theme 'sorin'
|
|||||||
# 'builtin' 'bg=blue' \
|
# 'builtin' 'bg=blue' \
|
||||||
# 'command' 'bg=blue' \
|
# 'command' 'bg=blue' \
|
||||||
# 'function' 'bg=blue'
|
# 'function' 'bg=blue'
|
||||||
|
#
|
||||||
|
# Set syntax pattern styles.
|
||||||
|
# zstyle ':prezto:module:syntax-highlighting' pattern \
|
||||||
|
# 'rm*-rf*' 'fg=white,bold,bg=red'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Terminal
|
# Terminal
|
||||||
|
Loading…
Reference in New Issue
Block a user