exclude .beep

This commit is contained in:
garinger 2011-07-05 21:48:02 +08:00 committed by Julien Nicoulaud
parent 9e75ca0e76
commit 1858be26bd

2
zsh-syntax-highlighting.zsh Executable file → Normal file
View file

@ -132,7 +132,7 @@ highlighters_dir="${ZSH_HIGHLIGHT_HIGHLIGHTERS_DIR:-${0:h}/highlighters}"
}
# Override ZLE widgets to make them invoke _zsh_highlight.
for event in ${${(f)"$(zle -la)"}:#(_*|orig-*|.run-help|.which-command)}; do
for event in ${${(f)"$(zle -la)"}:#(_*|orig-*|.run-help|.which-command|.beep)}; do
if [[ "$widgets[$event]" == completion:* ]]; then
eval "zle -C orig-$event ${${${widgets[$event]}#*:}/:/ } ; $event() { builtin zle orig-$event && _zsh_highlight } ; zle -N $event"
else