2010-12-25 12:33:08 -05:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
# Copyleft 2010 zsh-syntax-highlighting contributors
|
2010-12-25 12:47:12 -05:00
|
|
|
# http://github.com/nicoulaj/zsh-syntax-highlighting
|
2010-12-25 12:33:08 -05:00
|
|
|
# All wrongs reserved.
|
|
|
|
|
|
|
|
# Token types styles.
|
|
|
|
# See http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#SEC135
|
|
|
|
ZLE_RESERVED_WORD_STYLE='fg=yellow,bold'
|
2010-12-25 14:52:44 -05:00
|
|
|
ZLE_ALIAS_STYLE='fg=green,bold'
|
2010-12-25 12:33:08 -05:00
|
|
|
ZLE_BUILTIN_STYLE='fg=cyan,bold'
|
|
|
|
ZLE_FUNCTION_STYLE='fg=blue,bold'
|
|
|
|
ZLE_COMMAND_STYLE='fg=green,bold'
|
2010-12-25 14:51:55 -05:00
|
|
|
ZLE_PATH_STYLE='fg=white,underline'
|
2010-12-25 12:33:08 -05:00
|
|
|
ZLE_COMMAND_UNKNOWN_TOKEN_STYLE='fg=red,bold'
|
|
|
|
|
2010-12-25 14:52:44 -05:00
|
|
|
ZLE_HYPHEN_CLI_OPTION='fg=white'
|
|
|
|
ZLE_DOUBLE_HYPHEN_CLI_OPTION='fg=white'
|
|
|
|
ZLE_SINGLE_QUOTED='fg=yellow'
|
2010-12-27 06:57:05 -05:00
|
|
|
ZLE_DOUBLE_QUOTED='fg=yellow'
|
|
|
|
ZLE_DOLLAR_DOUBLE_QUOTED='fg=cyan'
|
|
|
|
ZLE_BACK_DOUBLE_QUOTED='fg=magenta'
|
2010-12-25 12:33:08 -05:00
|
|
|
ZLE_BACK_QUOTED='fg=cyan,bold'
|
|
|
|
ZLE_GLOBING='fg=blue,bold'
|
|
|
|
|
|
|
|
ZLE_DEFAULT='fg=white,bold'
|
|
|
|
|
2010-12-26 20:08:46 -05:00
|
|
|
ZLE_TOKENS_FOLLOWED_BY_COMMANDS=('|' '||' ';' '&' '&&' 'sudo' 'start' 'time' 'strace' 'noglob' 'command' 'builtin')
|
2010-12-25 12:33:08 -05:00
|
|
|
|
2010-12-25 16:38:07 -05:00
|
|
|
_check_path() {
|
2010-12-26 02:51:38 -05:00
|
|
|
[[ -z $arg ]] && return 1
|
|
|
|
[[ -e $arg ]] && return 0
|
|
|
|
[[ ! -e ${arg:h} ]] && return 1
|
|
|
|
[[ ${#BUFFER} == $end_pos && -n $(print $arg*(N)) ]] && return 0
|
2010-12-25 16:38:07 -05:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2010-12-27 06:57:05 -05:00
|
|
|
# hightlight special chars inside double-quoted strings
|
|
|
|
_hl_string() {
|
|
|
|
local i
|
|
|
|
local j
|
|
|
|
local k
|
|
|
|
local c
|
|
|
|
for (( i = 0 ; i < end_pos - start_pos ; i += 1 )) ; do
|
|
|
|
(( j = i + start_pos - 1 ))
|
|
|
|
(( k = j + 1 ))
|
|
|
|
c="$arg[$i]"
|
|
|
|
[[ "$c" = '$' ]] && region_highlight+=("$j $k $ZLE_DOLLAR_DOUBLE_QUOTED")
|
|
|
|
if [[ "$c" = '\' ]] ; then
|
|
|
|
(( k = k + 1 ))
|
|
|
|
region_highlight+=("$j $k $ZLE_BACK_DOUBLE_QUOTED")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2010-12-25 12:33:08 -05:00
|
|
|
# Recolorize the current ZLE buffer.
|
|
|
|
colorize-zle-buffer() {
|
2010-12-30 10:13:48 -05:00
|
|
|
setopt localoptions extendedglob bareglobqual
|
2010-12-25 12:33:08 -05:00
|
|
|
region_highlight=()
|
|
|
|
colorize=true
|
|
|
|
start_pos=0
|
|
|
|
for arg in ${(z)BUFFER}; do
|
2010-12-27 06:57:05 -05:00
|
|
|
local substr_color=0
|
2010-12-26 02:51:38 -05:00
|
|
|
((start_pos+=${#BUFFER[$start_pos+1,-1]}-${#${BUFFER[$start_pos+1,-1]##[[:space:]]#}}))
|
2010-12-25 12:33:08 -05:00
|
|
|
((end_pos=$start_pos+${#arg}))
|
|
|
|
if $colorize; then
|
|
|
|
colorize=false
|
2010-12-26 19:48:58 -05:00
|
|
|
res=$(LC_ALL=C builtin type -w $arg 2>/dev/null)
|
2010-12-25 12:33:08 -05:00
|
|
|
case $res in
|
2010-12-26 19:48:58 -05:00
|
|
|
*': reserved') style=$ZLE_RESERVED_WORD_STYLE;;
|
|
|
|
*': alias') style=$ZLE_ALIAS_STYLE;;
|
|
|
|
*': builtin') style=$ZLE_BUILTIN_STYLE;;
|
|
|
|
*': function') style=$ZLE_FUNCTION_STYLE;;
|
|
|
|
*': command') style=$ZLE_COMMAND_STYLE;;
|
|
|
|
*)
|
|
|
|
if _check_path; then
|
|
|
|
style=$ZLE_PATH_STYLE
|
|
|
|
else
|
|
|
|
style=$ZLE_COMMAND_UNKNOWN_TOKEN_STYLE
|
|
|
|
fi
|
|
|
|
;;
|
2010-12-25 12:33:08 -05:00
|
|
|
esac
|
|
|
|
else
|
|
|
|
case $arg in
|
|
|
|
'--'*) style=$ZLE_DOUBLE_HYPHEN_CLI_OPTION;;
|
|
|
|
'-'*) style=$ZLE_HYPHEN_CLI_OPTION;;
|
|
|
|
"'"*"'") style=$ZLE_SINGLE_QUOTED;;
|
2010-12-27 06:57:05 -05:00
|
|
|
'"'*'"')
|
|
|
|
style=$ZLE_DOUBLE_QUOTED
|
|
|
|
region_highlight+=("$start_pos $end_pos $style")
|
|
|
|
_hl_string
|
|
|
|
substr_color=1
|
|
|
|
;;
|
2010-12-25 12:33:08 -05:00
|
|
|
'`'*'`') style=$ZLE_BACK_QUOTED;;
|
|
|
|
*"*"*) style=$ZLE_GLOBING;;
|
2010-12-25 14:51:55 -05:00
|
|
|
*)
|
|
|
|
style=$ZLE_DEFAULT
|
2010-12-25 16:38:07 -05:00
|
|
|
_check_path && style=$ZLE_PATH_STYLE
|
2010-12-25 14:51:55 -05:00
|
|
|
;;
|
2010-12-25 12:33:08 -05:00
|
|
|
esac
|
|
|
|
fi
|
2010-12-27 06:57:05 -05:00
|
|
|
[[ $substr_color = 0 ]] && region_highlight+=("$start_pos $end_pos $style")
|
2010-12-25 16:03:27 -05:00
|
|
|
[[ ${${ZLE_TOKENS_FOLLOWED_BY_COMMANDS[(r)${arg//|/\|}]:-}:+yes} = 'yes' ]] && colorize=true
|
2010-12-25 12:33:08 -05:00
|
|
|
start_pos=$end_pos
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Bind the function to ZLE events.
|
|
|
|
ZLE_COLORED_FUNCTIONS=(
|
|
|
|
self-insert
|
2010-12-30 10:20:43 -05:00
|
|
|
magic-space
|
2010-12-25 12:33:08 -05:00
|
|
|
delete-char
|
|
|
|
backward-delete-char
|
|
|
|
kill-word
|
|
|
|
backward-kill-word
|
|
|
|
up-line-or-history
|
|
|
|
down-line-or-history
|
|
|
|
beginning-of-history
|
|
|
|
end-of-history
|
|
|
|
undo
|
|
|
|
redo
|
|
|
|
yank
|
|
|
|
)
|
|
|
|
|
|
|
|
for f in $ZLE_COLORED_FUNCTIONS; do
|
|
|
|
eval "$f() { zle .$f && colorize-zle-buffer } ; zle -N $f"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Expand or complete hack
|
|
|
|
|
|
|
|
# create an expansion widget which mimics the original "expand-or-complete" (you can see the default setup using "zle -l -L")
|
|
|
|
zle -C orig-expand-or-complete .expand-or-complete _main_complete
|
|
|
|
|
|
|
|
# use the orig-expand-or-complete inside the colorize function (for some reason, using the ".expand-or-complete" widget doesn't work the same)
|
|
|
|
expand-or-complete() { builtin zle orig-expand-or-complete && colorize-zle-buffer }
|
|
|
|
zle -N expand-or-complete
|