2010-12-25 17:33:08 +00:00
|
|
|
#!/usr/bin/env zsh
|
2011-01-05 09:54:25 +00:00
|
|
|
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
|
|
|
|
# vim: ft=zsh sw=2 ts=2 et
|
|
|
|
|
|
|
|
# Copyleft 2011 zsh-syntax-highlighting contributors
|
2010-12-25 17:47:12 +00:00
|
|
|
# http://github.com/nicoulaj/zsh-syntax-highlighting
|
2010-12-25 17:33:08 +00:00
|
|
|
# All wrongs reserved.
|
|
|
|
|
|
|
|
# Token types styles.
|
2011-01-01 21:17:56 +00:00
|
|
|
typeset -gA ZSH_HIGHLIGHT_STYLES
|
2011-01-01 16:34:35 +00:00
|
|
|
ZSH_HIGHLIGHT_STYLES=(
|
2010-12-30 17:35:28 +00:00
|
|
|
default 'none'
|
2010-12-31 13:35:38 +00:00
|
|
|
isearch 'fg=magenta,standout'
|
|
|
|
special 'fg=magenta,standout'
|
2010-12-30 17:35:28 +00:00
|
|
|
unknown-token 'fg=red,bold'
|
2010-12-31 13:45:03 +00:00
|
|
|
reserved-word 'fg=yellow'
|
|
|
|
alias 'fg=green'
|
|
|
|
builtin 'fg=green'
|
|
|
|
function 'fg=green'
|
|
|
|
command 'fg=green'
|
2010-12-30 18:49:04 +00:00
|
|
|
path 'underline'
|
2010-12-31 13:45:03 +00:00
|
|
|
globbing 'fg=blue'
|
2011-01-01 15:30:35 +00:00
|
|
|
history-expansion 'fg=blue'
|
2010-12-31 13:45:03 +00:00
|
|
|
single-hyphen-option 'none'
|
|
|
|
double-hyphen-option 'none'
|
|
|
|
back-quoted-argument 'none'
|
2010-12-30 17:35:28 +00:00
|
|
|
single-quoted-argument 'fg=yellow'
|
|
|
|
double-quoted-argument 'fg=yellow'
|
|
|
|
dollar-double-quoted-argument 'fg=cyan'
|
2010-12-31 13:45:03 +00:00
|
|
|
back-double-quoted-argument 'fg=cyan'
|
2011-01-05 12:48:23 +00:00
|
|
|
bracket-error 'fg=red,bold'
|
2010-12-30 17:35:28 +00:00
|
|
|
)
|
2010-12-25 17:33:08 +00:00
|
|
|
|
2010-12-30 17:53:42 +00:00
|
|
|
# Tokens that are always followed by a command.
|
|
|
|
ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS=(
|
|
|
|
'|'
|
|
|
|
'||'
|
|
|
|
';'
|
|
|
|
'&'
|
|
|
|
'&&'
|
|
|
|
'sudo'
|
|
|
|
'start'
|
|
|
|
'time'
|
|
|
|
'strace'
|
|
|
|
'noglob'
|
2011-01-01 23:09:05 +00:00
|
|
|
'nocorrect'
|
2010-12-30 17:53:42 +00:00
|
|
|
'command'
|
|
|
|
'builtin'
|
2011-01-02 17:19:25 +00:00
|
|
|
'whence'
|
|
|
|
'which'
|
2011-01-02 17:19:56 +00:00
|
|
|
'where'
|
|
|
|
'whereis'
|
2010-12-30 17:53:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# ZLE events that trigger an update of the highlighting.
|
|
|
|
ZSH_HIGHLIGHT_ZLE_UPDATE_EVENTS=(
|
2010-12-31 13:35:38 +00:00
|
|
|
accept-and-hold
|
|
|
|
accept-and-infer-next-history
|
2011-01-05 09:54:25 +00:00
|
|
|
# accept-and-menu-complete
|
2010-12-31 13:35:38 +00:00
|
|
|
accept-line
|
|
|
|
accept-line-and-down-history
|
2011-01-05 09:54:25 +00:00
|
|
|
argument-base
|
|
|
|
auto-suffix-remove
|
|
|
|
auto-suffix-retain
|
|
|
|
backward-char
|
2010-12-30 17:53:42 +00:00
|
|
|
backward-delete-char
|
2010-12-31 13:35:38 +00:00
|
|
|
backward-delete-word
|
2011-01-05 09:54:25 +00:00
|
|
|
backward-kill-line
|
2010-12-30 17:53:42 +00:00
|
|
|
backward-kill-word
|
2011-01-05 09:54:25 +00:00
|
|
|
backward-kill-word-match
|
|
|
|
backward-word
|
|
|
|
backward-word-match
|
|
|
|
beep
|
2010-12-31 13:35:38 +00:00
|
|
|
beginning-of-buffer-or-history
|
2010-12-30 17:53:42 +00:00
|
|
|
beginning-of-history
|
2011-01-05 09:54:25 +00:00
|
|
|
beginning-of-line
|
2010-12-31 13:35:38 +00:00
|
|
|
beginning-of-line-hist
|
2011-01-05 09:54:25 +00:00
|
|
|
capitalize-word
|
|
|
|
capitalize-word-match
|
|
|
|
clear-screen
|
2010-12-30 16:48:06 +00:00
|
|
|
complete-word
|
2011-01-05 09:54:25 +00:00
|
|
|
copy-earlier-word
|
|
|
|
copy-prev-shell-word
|
|
|
|
copy-prev-word
|
|
|
|
copy-region-as-kill
|
|
|
|
cycle-completion-positions
|
2010-12-31 13:35:38 +00:00
|
|
|
delete-char
|
|
|
|
delete-char-or-list
|
2011-01-05 09:54:25 +00:00
|
|
|
delete-to-char
|
|
|
|
delete-whole-word-match
|
|
|
|
delete-word
|
|
|
|
describe-key-briefly
|
|
|
|
digit-argument
|
|
|
|
down-case-word
|
|
|
|
down-case-word-match
|
2010-12-31 13:35:38 +00:00
|
|
|
down-history
|
2011-01-05 09:54:25 +00:00
|
|
|
down-line-or-beginning-search
|
2010-12-31 13:35:38 +00:00
|
|
|
down-line-or-history
|
|
|
|
down-line-or-search
|
2011-01-05 09:54:25 +00:00
|
|
|
edit-command-line
|
|
|
|
emacs-backward-word
|
|
|
|
emacs-forward-word
|
2010-12-31 13:35:38 +00:00
|
|
|
end-of-buffer-or-history
|
|
|
|
end-of-history
|
2011-01-05 09:54:25 +00:00
|
|
|
end-of-line
|
2010-12-31 13:35:38 +00:00
|
|
|
end-of-line-hist
|
2011-01-05 09:54:25 +00:00
|
|
|
end-of-list
|
|
|
|
exchange-point-and-mark
|
|
|
|
execute-last-named-cmd
|
|
|
|
execute-named-cmd
|
|
|
|
expand-cmd-path
|
|
|
|
expand-history
|
2010-12-30 16:48:06 +00:00
|
|
|
expand-or-complete
|
|
|
|
expand-or-complete-prefix
|
2011-01-05 09:54:25 +00:00
|
|
|
expand-word
|
|
|
|
forward-char
|
|
|
|
forward-word
|
|
|
|
forward-word-match
|
|
|
|
get-line
|
|
|
|
gosmacs-transpose-chars
|
2010-12-31 13:35:38 +00:00
|
|
|
history-beginning-search-backward
|
2011-01-05 09:54:25 +00:00
|
|
|
history-beginning-search-backward-end
|
2010-12-31 13:35:38 +00:00
|
|
|
history-beginning-search-forward
|
2011-01-05 09:54:25 +00:00
|
|
|
history-beginning-search-forward-end
|
|
|
|
history-beginning-search-menu
|
|
|
|
history-incremental-pattern-search-backward
|
|
|
|
history-incremental-pattern-search-forward
|
2010-12-31 13:35:38 +00:00
|
|
|
history-incremental-search-backward
|
|
|
|
history-incremental-search-forward
|
2011-01-05 09:54:25 +00:00
|
|
|
history-pattern-search
|
|
|
|
history-pattern-search-backward
|
|
|
|
history-pattern-search-forward
|
2010-12-31 13:35:38 +00:00
|
|
|
history-search-backward
|
|
|
|
history-search-forward
|
2011-01-05 09:54:25 +00:00
|
|
|
incarg
|
|
|
|
# incremental-complete-word
|
2010-12-31 13:35:38 +00:00
|
|
|
infer-next-history
|
2011-01-05 09:54:25 +00:00
|
|
|
insert-composed-char
|
|
|
|
insert-files
|
2010-12-31 13:35:38 +00:00
|
|
|
insert-last-word
|
2011-01-05 09:54:25 +00:00
|
|
|
insert-unicode-char
|
|
|
|
kill-buffer
|
|
|
|
kill-line
|
|
|
|
kill-region
|
|
|
|
kill-whole-line
|
2010-12-31 13:35:38 +00:00
|
|
|
kill-word
|
2011-01-05 09:54:25 +00:00
|
|
|
kill-word-match
|
|
|
|
list-choices
|
|
|
|
list-expand
|
2010-12-31 13:35:38 +00:00
|
|
|
magic-space
|
2011-01-05 09:54:25 +00:00
|
|
|
match-word-context
|
|
|
|
match-words-by-style
|
|
|
|
menu-complete
|
|
|
|
menu-expand-or-complete
|
|
|
|
menu-select
|
|
|
|
modify-current-argument
|
|
|
|
narrow-to-region
|
|
|
|
narrow-to-region-invisible
|
|
|
|
neg-argument
|
|
|
|
overwrite-mode
|
|
|
|
pound-insert
|
|
|
|
predict-off
|
|
|
|
predict-on
|
|
|
|
push-input
|
|
|
|
push-line
|
|
|
|
push-line-or-edit
|
|
|
|
quote-line
|
|
|
|
quote-region
|
2010-12-31 13:35:38 +00:00
|
|
|
quoted-insert
|
2011-01-05 09:54:25 +00:00
|
|
|
read-command
|
|
|
|
read-from-minibuffer
|
|
|
|
recursive-edit
|
|
|
|
redisplay
|
2010-12-31 13:35:38 +00:00
|
|
|
redo
|
2011-01-05 09:54:25 +00:00
|
|
|
replace-pattern
|
|
|
|
replace-string
|
|
|
|
replace-string-again
|
|
|
|
reset-prompt
|
|
|
|
reverse-menu-complete
|
|
|
|
run-help
|
|
|
|
select-word-style
|
2010-12-31 13:35:38 +00:00
|
|
|
self-insert
|
2011-01-05 09:54:25 +00:00
|
|
|
self-insert-unmeta
|
|
|
|
send-break
|
|
|
|
set-mark-command
|
|
|
|
smart-insert-last-word
|
|
|
|
spell-word
|
|
|
|
split-shell-arguments
|
|
|
|
transpose-chars
|
|
|
|
transpose-words
|
|
|
|
transpose-words-match
|
|
|
|
undefined-key
|
2010-12-31 13:35:38 +00:00
|
|
|
undo
|
2011-01-05 09:54:25 +00:00
|
|
|
universal-argument
|
|
|
|
up-case-word
|
|
|
|
up-case-word-match
|
2010-12-31 13:35:38 +00:00
|
|
|
up-history
|
2011-01-05 09:54:25 +00:00
|
|
|
up-line-or-beginning-search
|
2010-12-31 13:35:38 +00:00
|
|
|
up-line-or-history
|
|
|
|
up-line-or-search
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-add-eol
|
|
|
|
vi-add-next
|
|
|
|
vi-backward-blank-word
|
|
|
|
vi-backward-char
|
|
|
|
vi-backward-delete-char
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-backward-kill-word
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-backward-word
|
|
|
|
vi-beginning-of-line
|
|
|
|
vi-caps-lock-panic
|
|
|
|
vi-change
|
|
|
|
vi-change-eol
|
|
|
|
vi-change-whole-line
|
|
|
|
vi-cmd-mode
|
|
|
|
vi-delete
|
|
|
|
vi-delete-char
|
|
|
|
vi-digit-or-beginning-of-line
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-down-line-or-history
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-end-of-line
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-fetch-history
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-find-next-char
|
|
|
|
vi-find-next-char-skip
|
|
|
|
vi-find-prev-char
|
|
|
|
vi-find-prev-char-skip
|
|
|
|
vi-first-non-blank
|
|
|
|
vi-forward-blank-word
|
|
|
|
vi-forward-blank-word-end
|
|
|
|
vi-forward-char
|
|
|
|
vi-forward-word
|
|
|
|
vi-forward-word-end
|
|
|
|
vi-goto-column
|
|
|
|
vi-goto-mark
|
|
|
|
vi-goto-mark-line
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-history-search-backward
|
|
|
|
vi-history-search-forward
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-indent
|
|
|
|
vi-insert
|
|
|
|
vi-insert-bol
|
|
|
|
vi-join
|
|
|
|
vi-kill-eol
|
|
|
|
vi-kill-line
|
|
|
|
vi-match-bracket
|
|
|
|
vi-open-line-above
|
|
|
|
vi-open-line-below
|
|
|
|
vi-oper-swap-case
|
|
|
|
vi-pound-insert
|
|
|
|
vi-put-after
|
|
|
|
vi-put-before
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-quoted-insert
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-repeat-change
|
|
|
|
vi-repeat-find
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-repeat-search
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-replace
|
|
|
|
vi-replace-chars
|
|
|
|
vi-rev-repeat-find
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-rev-repeat-search
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-set-buffer
|
|
|
|
vi-set-mark
|
|
|
|
vi-substitute
|
|
|
|
vi-swap-case
|
|
|
|
vi-undo-change
|
|
|
|
vi-unindent
|
2010-12-31 13:35:38 +00:00
|
|
|
vi-up-line-or-history
|
2011-01-05 09:54:25 +00:00
|
|
|
vi-yank
|
|
|
|
vi-yank-eol
|
|
|
|
vi-yank-whole-line
|
|
|
|
what-cursor-position
|
|
|
|
where-is
|
|
|
|
which-command
|
2010-12-31 13:35:38 +00:00
|
|
|
yank
|
2011-01-05 09:54:25 +00:00
|
|
|
yank-pop
|
|
|
|
zap-to-char
|
2010-12-31 13:35:38 +00:00
|
|
|
)
|
|
|
|
|
2011-01-05 12:48:23 +00:00
|
|
|
# Colors for bracket levels
|
|
|
|
# Put as many color as you wish
|
|
|
|
# Leave it as an empty array to disable
|
|
|
|
ZSH_MATCHING_BRACKETS=(
|
|
|
|
'fg=blue,bold'
|
|
|
|
'fg=green,bold'
|
|
|
|
'fg=magenta,bold'
|
|
|
|
'fg=yellow,bold'
|
|
|
|
'fg=cyan,bold'
|
|
|
|
)
|
|
|
|
|
2010-12-31 13:35:38 +00:00
|
|
|
# ZLE highlight types.
|
|
|
|
zle_highlight=(
|
2011-01-01 16:34:35 +00:00
|
|
|
special:$ZSH_HIGHLIGHT_STYLES[special]
|
|
|
|
isearch:$ZSH_HIGHLIGHT_STYLES[isearch]
|
2010-12-30 17:53:42 +00:00
|
|
|
)
|
2010-12-25 17:33:08 +00:00
|
|
|
|
2010-12-30 17:53:42 +00:00
|
|
|
# Check if the argument is a path.
|
|
|
|
_zsh_check-path() {
|
2010-12-30 16:05:00 +00:00
|
|
|
[[ -z $arg ]] && return 1
|
|
|
|
[[ -e $arg ]] && return 0
|
|
|
|
[[ ! -e ${arg:h} ]] && return 1
|
|
|
|
[[ ${#BUFFER} == $end_pos && -n $(print $arg*(N)) ]] && return 0
|
|
|
|
return 1
|
2010-12-25 21:38:07 +00:00
|
|
|
}
|
|
|
|
|
2010-12-30 17:53:42 +00:00
|
|
|
# Highlight special chars inside double-quoted strings
|
|
|
|
_zsh_highlight-string() {
|
2010-12-30 17:58:20 +00:00
|
|
|
setopt localoptions noksharrays
|
|
|
|
local i j k style
|
|
|
|
# Starting quote is at 1, so start parsing at offset 2 in the string.
|
|
|
|
for (( i = 2 ; i < end_pos - start_pos ; i += 1 )) ; do
|
2010-12-30 16:05:00 +00:00
|
|
|
(( j = i + start_pos - 1 ))
|
|
|
|
(( k = j + 1 ))
|
2010-12-30 17:58:20 +00:00
|
|
|
case "$arg[$i]" in
|
2011-01-01 16:34:35 +00:00
|
|
|
'$') style=$ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument];;
|
|
|
|
"\\") style=$ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]
|
2010-12-30 17:58:20 +00:00
|
|
|
(( k += 1 )) # Color following char too.
|
|
|
|
(( i += 1 )) # Skip parsing the escaped char.
|
|
|
|
;;
|
|
|
|
*) continue;;
|
|
|
|
esac
|
|
|
|
region_highlight+=("$j $k $style")
|
2010-12-30 16:05:00 +00:00
|
|
|
done
|
2010-12-27 11:57:05 +00:00
|
|
|
}
|
|
|
|
|
2010-12-25 17:33:08 +00:00
|
|
|
# Recolorize the current ZLE buffer.
|
2010-12-30 17:53:42 +00:00
|
|
|
_zsh_highlight-zle-buffer() {
|
2010-12-31 23:16:34 +00:00
|
|
|
# Avoid doing the same work over and over
|
|
|
|
[[ ${ZSH_PRIOR_HIGHLIGHTED_BUFFER:-} == $BUFFER ]] && return
|
|
|
|
ZSH_PRIOR_HIGHLIGHTED_BUFFER=$BUFFER
|
|
|
|
|
2010-12-30 15:13:48 +00:00
|
|
|
setopt localoptions extendedglob bareglobqual
|
2011-01-01 15:32:37 +00:00
|
|
|
local new_expression=true
|
2010-12-30 16:50:19 +00:00
|
|
|
local start_pos=0
|
2011-01-01 15:01:30 +00:00
|
|
|
local highlight_glob=true
|
2010-12-30 16:50:19 +00:00
|
|
|
local end_pos arg style
|
2010-12-25 17:33:08 +00:00
|
|
|
region_highlight=()
|
|
|
|
for arg in ${(z)BUFFER}; do
|
2010-12-27 11:57:05 +00:00
|
|
|
local substr_color=0
|
2011-01-01 15:01:30 +00:00
|
|
|
[[ $start_pos -eq 0 && $arg = 'noglob' ]] && highlight_glob=false
|
2010-12-26 07:51:38 +00:00
|
|
|
((start_pos+=${#BUFFER[$start_pos+1,-1]}-${#${BUFFER[$start_pos+1,-1]##[[:space:]]#}}))
|
2010-12-25 17:33:08 +00:00
|
|
|
((end_pos=$start_pos+${#arg}))
|
2011-01-01 15:32:37 +00:00
|
|
|
if $new_expression; then
|
|
|
|
new_expression=false
|
2010-12-27 00:48:58 +00:00
|
|
|
res=$(LC_ALL=C builtin type -w $arg 2>/dev/null)
|
2010-12-25 17:33:08 +00:00
|
|
|
case $res in
|
2011-01-01 16:34:35 +00:00
|
|
|
*': reserved') style=$ZSH_HIGHLIGHT_STYLES[reserved-word];;
|
|
|
|
*': alias') style=$ZSH_HIGHLIGHT_STYLES[alias]
|
2011-01-05 10:28:24 +00:00
|
|
|
local aliased_command="${"$(alias $arg)"#*=}"
|
2011-01-01 15:11:13 +00:00
|
|
|
if [[ ${${ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS[(r)$aliased_command]:-}:+yes} = 'yes' && ${${ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS[(r)$arg]:-}:+yes} != 'yes' ]]; then
|
|
|
|
ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS+=($arg)
|
|
|
|
fi
|
2010-12-30 18:18:17 +00:00
|
|
|
;;
|
2011-01-01 16:34:35 +00:00
|
|
|
*': builtin') style=$ZSH_HIGHLIGHT_STYLES[builtin];;
|
|
|
|
*': function') style=$ZSH_HIGHLIGHT_STYLES[function];;
|
|
|
|
*': command') style=$ZSH_HIGHLIGHT_STYLES[command];;
|
2011-01-01 15:30:35 +00:00
|
|
|
*) if _zsh_check-path; then
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[path]
|
2011-01-01 18:17:02 +00:00
|
|
|
elif [[ $arg[0,1] = $histchars[0,1] ]]; then
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[history-expansion]
|
2011-01-01 15:30:35 +00:00
|
|
|
else
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[unknown-token]
|
2011-01-05 09:54:25 +00:00
|
|
|
fi
|
|
|
|
;;
|
2010-12-25 17:33:08 +00:00
|
|
|
esac
|
|
|
|
else
|
2010-12-30 16:05:00 +00:00
|
|
|
case $arg in
|
2011-01-01 16:34:35 +00:00
|
|
|
'--'*) style=$ZSH_HIGHLIGHT_STYLES[double-hyphen-option];;
|
|
|
|
'-'*) style=$ZSH_HIGHLIGHT_STYLES[single-hyphen-option];;
|
|
|
|
"'"*"'") style=$ZSH_HIGHLIGHT_STYLES[single-quoted-argument];;
|
|
|
|
'"'*'"') style=$ZSH_HIGHLIGHT_STYLES[double-quoted-argument]
|
2010-12-30 16:47:55 +00:00
|
|
|
region_highlight+=("$start_pos $end_pos $style")
|
|
|
|
_zsh_highlight-string
|
|
|
|
substr_color=1
|
|
|
|
;;
|
2011-01-01 16:34:35 +00:00
|
|
|
'`'*'`') style=$ZSH_HIGHLIGHT_STYLES[back-quoted-argument];;
|
|
|
|
*"*"*) $highlight_glob && style=$ZSH_HIGHLIGHT_STYLES[globbing] || style=$ZSH_HIGHLIGHT_STYLES[default];;
|
2011-01-01 15:30:35 +00:00
|
|
|
*) if _zsh_check-path; then
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[path]
|
2011-01-01 18:17:02 +00:00
|
|
|
elif [[ $arg[0,1] = $histchars[0,1] ]]; then
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[history-expansion]
|
2011-01-01 15:30:35 +00:00
|
|
|
else
|
2011-01-01 16:34:35 +00:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[default]
|
2011-01-05 09:54:25 +00:00
|
|
|
fi
|
|
|
|
;;
|
2010-12-30 16:05:00 +00:00
|
|
|
esac
|
2010-12-25 17:33:08 +00:00
|
|
|
fi
|
2010-12-27 11:57:05 +00:00
|
|
|
[[ $substr_color = 0 ]] && region_highlight+=("$start_pos $end_pos $style")
|
2011-01-01 15:32:37 +00:00
|
|
|
[[ ${${ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS[(r)${arg//|/\|}]:-}:+yes} = 'yes' ]] && new_expression=true
|
2010-12-25 17:33:08 +00:00
|
|
|
start_pos=$end_pos
|
|
|
|
done
|
2011-01-05 12:48:23 +00:00
|
|
|
|
|
|
|
# Bracket matching
|
|
|
|
bracket_color_size=${#ZSH_MATCHING_BRACKETS}
|
|
|
|
if ((bracket_color_size > 0)); then
|
|
|
|
((level = 0))
|
|
|
|
for pos in {1..${#BUFFER}}; do
|
|
|
|
case $BUFFER[pos] in
|
|
|
|
"("|"["|"{")
|
|
|
|
((level++))
|
|
|
|
region_highlight+=("$((pos - 1)) $pos "$ZSH_MATCHING_BRACKETS[(( (level - 1) % bracket_color_size + 1 ))])
|
|
|
|
;;
|
|
|
|
")"|"]"|"}")
|
|
|
|
if ((level < 1)); then
|
|
|
|
region_highlight+=("$((pos - 1)) $pos "$ZSH_HIGHLIGHT_STYLES[bracket-error])
|
|
|
|
else
|
|
|
|
region_highlight+=("$((pos - 1)) $pos "$ZSH_MATCHING_BRACKETS[(( (level - 1) % bracket_color_size + 1 ))])
|
|
|
|
fi
|
|
|
|
((level--))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
fi
|
2010-12-25 17:33:08 +00:00
|
|
|
}
|
|
|
|
|
2010-12-30 16:48:06 +00:00
|
|
|
# Special treatment for completion/expansion events:
|
|
|
|
# For each *complete* function, we create a widget which mimics the original
|
|
|
|
# and use this orig-* version inside the new colorized zle function (the dot
|
|
|
|
# idiom used for all others doesn't work right for these functions for some
|
|
|
|
# reason). You can see the default setup using "zle -l -L".
|
|
|
|
|
2010-12-30 17:53:42 +00:00
|
|
|
# Bind ZLE events to highlighting function.
|
|
|
|
for f in $ZSH_HIGHLIGHT_ZLE_UPDATE_EVENTS; do
|
2010-12-30 16:48:06 +00:00
|
|
|
case $f in
|
|
|
|
*complete*)
|
2010-12-30 18:36:51 +00:00
|
|
|
eval "zle -C orig-$f .$f _main_complete ; $f() { builtin zle orig-$f && _zsh_highlight-zle-buffer } ; zle -N $f"
|
2010-12-30 16:48:06 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
eval "$f() { builtin zle .$f && _zsh_highlight-zle-buffer } ; zle -N $f"
|
|
|
|
;;
|
|
|
|
esac
|
2010-12-25 17:33:08 +00:00
|
|
|
done
|
2011-01-05 09:54:25 +00:00
|
|
|
|
|
|
|
|