2011-06-13 04:57:14 +08:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
|
|
# Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification, are permitted
|
|
|
|
# provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice, this list of conditions
|
|
|
|
# and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice, this list of
|
|
|
|
# conditions and the following disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
|
|
|
|
# may be used to endorse or promote products derived from this software without specific prior
|
|
|
|
# written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
|
|
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
|
|
|
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
|
|
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
|
|
|
|
# vim: ft=zsh sw=2 ts=2 et
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
# Define default styles.
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[default]:=none}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[unknown-token]:=fg=red,bold}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[reserved-word]:=fg=yellow}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[alias]:=fg=green}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[builtin]:=fg=green}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[function]:=fg=green}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[command]:=fg=green}
|
2011-09-12 22:48:18 +08:00
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[precommand]:=fg=green,underline}
|
2011-09-21 00:47:06 +08:00
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[commandseparator]:=none}
|
2011-06-13 04:57:14 +08:00
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[hashed-command]:=fg=green}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[path]:=underline}
|
2013-07-25 10:41:09 +08:00
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[path_prefix]:=underline}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[path_approx]:=fg=yellow,underline}
|
2011-06-13 04:57:14 +08:00
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[globbing]:=fg=blue}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[history-expansion]:=fg=blue}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[single-hyphen-option]:=none}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[double-hyphen-option]:=none}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[back-quoted-argument]:=none}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[single-quoted-argument]:=fg=yellow}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[double-quoted-argument]:=fg=yellow}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]:=fg=cyan}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]:=fg=cyan}
|
|
|
|
: ${ZSH_HIGHLIGHT_STYLES[assign]:=none}
|
|
|
|
|
|
|
|
# Whether the highlighter should be called or not.
|
|
|
|
_zsh_highlight_main_highlighter_predicate()
|
|
|
|
{
|
|
|
|
_zsh_highlight_buffer_modified
|
|
|
|
}
|
|
|
|
|
2015-01-26 20:49:19 +08:00
|
|
|
# Helper to deal with tokens crossing line boundaries.
|
|
|
|
_zsh_highlight_main_add_region_highlight() {
|
|
|
|
integer start=$1 end=$2
|
|
|
|
local style=$3
|
2015-01-26 22:03:08 +08:00
|
|
|
|
|
|
|
# The calculation was relative to $PREBUFFER$BUFFER, but region_highlight is
|
|
|
|
# relative to $BUFFER.
|
|
|
|
(( start -= $#PREBUFFER ))
|
|
|
|
(( end -= $#PREBUFFER ))
|
|
|
|
|
|
|
|
(( end < 0 )) && return # bug
|
|
|
|
(( start < 0 )) && start=0 # normal with e.g. multiline strings
|
2015-01-26 20:49:19 +08:00
|
|
|
region_highlight+=("$start $end $style")
|
|
|
|
}
|
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
# Main syntax highlighting function.
|
|
|
|
_zsh_highlight_main_highlighter()
|
|
|
|
{
|
2013-11-05 07:50:20 +08:00
|
|
|
emulate -L zsh
|
2011-06-13 04:57:14 +08:00
|
|
|
setopt localoptions extendedglob bareglobqual
|
2013-09-29 09:33:34 +08:00
|
|
|
local start_pos=0 end_pos highlight_glob=true new_expression=true arg style sudo=false sudo_arg=false
|
2011-09-12 22:48:18 +08:00
|
|
|
typeset -a ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR
|
|
|
|
typeset -a ZSH_HIGHLIGHT_TOKENS_PRECOMMANDS
|
|
|
|
typeset -a ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS
|
2015-01-26 22:03:08 +08:00
|
|
|
local buf="$PREBUFFER$BUFFER"
|
2011-06-13 04:57:14 +08:00
|
|
|
region_highlight=()
|
2011-09-12 22:48:18 +08:00
|
|
|
|
|
|
|
ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR=(
|
|
|
|
'|' '||' ';' '&' '&&'
|
|
|
|
)
|
|
|
|
ZSH_HIGHLIGHT_TOKENS_PRECOMMANDS=(
|
2013-09-29 09:33:34 +08:00
|
|
|
'builtin' 'command' 'exec' 'nocorrect' 'noglob'
|
2011-09-12 22:48:18 +08:00
|
|
|
)
|
|
|
|
# Tokens that are always immediately followed by a command.
|
|
|
|
ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS=(
|
|
|
|
$ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR $ZSH_HIGHLIGHT_TOKENS_PRECOMMANDS
|
|
|
|
)
|
|
|
|
|
2015-01-26 22:03:08 +08:00
|
|
|
for arg in ${(z)buf}; do
|
2011-06-13 04:57:14 +08:00
|
|
|
local substr_color=0
|
2013-07-25 10:41:09 +08:00
|
|
|
local style_override=""
|
2011-06-13 04:57:14 +08:00
|
|
|
[[ $start_pos -eq 0 && $arg = 'noglob' ]] && highlight_glob=false
|
2015-01-26 23:17:49 +08:00
|
|
|
((start_pos+=${#buf[$start_pos+1,-1]}-${#${buf[$start_pos+1,-1]##([[:space:]]|\\[[:space:]])#}}))
|
2011-06-13 04:57:14 +08:00
|
|
|
((end_pos=$start_pos+${#arg}))
|
2013-09-29 09:33:34 +08:00
|
|
|
# Parse the sudo command line
|
|
|
|
if $sudo; then
|
|
|
|
case "$arg" in
|
|
|
|
# Flag that requires an argument
|
|
|
|
'-'[Cgprtu]) sudo_arg=true;;
|
|
|
|
# This prevents misbehavior with sudo -u -otherargument
|
|
|
|
'-'*) sudo_arg=false;;
|
|
|
|
*) if $sudo_arg; then
|
|
|
|
sudo_arg=false
|
|
|
|
else
|
|
|
|
sudo=false
|
|
|
|
new_expression=true
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2011-06-13 04:57:14 +08:00
|
|
|
if $new_expression; then
|
|
|
|
new_expression=false
|
2011-09-12 22:48:18 +08:00
|
|
|
if [[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_PRECOMMANDS:#"$arg"} ]]; then
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[precommand]
|
2013-09-29 09:33:34 +08:00
|
|
|
elif [[ "$arg" = "sudo" ]]; then
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[precommand]
|
|
|
|
sudo=true
|
2011-09-12 22:48:18 +08:00
|
|
|
else
|
2011-06-13 04:57:14 +08:00
|
|
|
res=$(LC_ALL=C builtin type -w $arg 2>/dev/null)
|
|
|
|
case $res in
|
|
|
|
*': reserved') style=$ZSH_HIGHLIGHT_STYLES[reserved-word];;
|
|
|
|
*': alias') style=$ZSH_HIGHLIGHT_STYLES[alias]
|
2013-11-05 07:50:20 +08:00
|
|
|
local aliased_command="${"$(alias -- $arg)"#*=}"
|
2011-06-13 04:57:14 +08:00
|
|
|
[[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS:#"$aliased_command"} && -z ${(M)ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS:#"$arg"} ]] && ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS+=($arg)
|
|
|
|
;;
|
|
|
|
*': builtin') style=$ZSH_HIGHLIGHT_STYLES[builtin];;
|
|
|
|
*': function') style=$ZSH_HIGHLIGHT_STYLES[function];;
|
|
|
|
*': command') style=$ZSH_HIGHLIGHT_STYLES[command];;
|
|
|
|
*': hashed') style=$ZSH_HIGHLIGHT_STYLES[hashed-command];;
|
2011-09-07 01:21:12 +08:00
|
|
|
*) if _zsh_highlight_main_highlighter_check_assign; then
|
2011-06-13 04:57:14 +08:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[assign]
|
|
|
|
new_expression=true
|
2011-09-07 01:21:12 +08:00
|
|
|
elif _zsh_highlight_main_highlighter_check_path; then
|
2011-06-13 04:57:14 +08:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[path]
|
2013-12-07 18:11:19 +08:00
|
|
|
elif [[ $arg[0,1] == $histchars[0,1] || $arg[0,1] == $histchars[2,2] ]]; then
|
2011-06-13 04:57:14 +08:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[history-expansion]
|
|
|
|
else
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[unknown-token]
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2011-09-12 22:48:18 +08:00
|
|
|
fi
|
2011-06-13 04:57:14 +08:00
|
|
|
else
|
|
|
|
case $arg in
|
|
|
|
'--'*) 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]
|
2015-01-26 20:49:19 +08:00
|
|
|
_zsh_highlight_main_add_region_highlight $start_pos $end_pos $style
|
2011-06-13 04:57:14 +08:00
|
|
|
_zsh_highlight_main_highlighter_highlight_string
|
|
|
|
substr_color=1
|
|
|
|
;;
|
|
|
|
'`'*'`') style=$ZSH_HIGHLIGHT_STYLES[back-quoted-argument];;
|
|
|
|
*"*"*) $highlight_glob && style=$ZSH_HIGHLIGHT_STYLES[globbing] || style=$ZSH_HIGHLIGHT_STYLES[default];;
|
2011-09-07 01:21:12 +08:00
|
|
|
*) if _zsh_highlight_main_highlighter_check_path; then
|
2011-06-13 04:57:14 +08:00
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[path]
|
|
|
|
elif [[ $arg[0,1] = $histchars[0,1] ]]; then
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[history-expansion]
|
2011-09-12 22:48:18 +08:00
|
|
|
elif [[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_COMMANDSEPARATOR:#"$arg"} ]]; then
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[commandseparator]
|
2011-06-13 04:57:14 +08:00
|
|
|
else
|
|
|
|
style=$ZSH_HIGHLIGHT_STYLES[default]
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2013-07-25 10:41:09 +08:00
|
|
|
# if a style_override was set (eg in _zsh_highlight_main_highlighter_check_path), use it
|
|
|
|
[[ -n $style_override ]] && style=$ZSH_HIGHLIGHT_STYLES[$style_override]
|
2015-01-26 20:49:19 +08:00
|
|
|
[[ $substr_color = 0 ]] && _zsh_highlight_main_add_region_highlight $start_pos $end_pos $style
|
2011-06-13 04:57:14 +08:00
|
|
|
[[ -n ${(M)ZSH_HIGHLIGHT_TOKENS_FOLLOWED_BY_COMMANDS:#"$arg"} ]] && new_expression=true
|
|
|
|
start_pos=$end_pos
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check if the argument is variable assignment
|
|
|
|
_zsh_highlight_main_highlighter_check_assign()
|
|
|
|
{
|
|
|
|
setopt localoptions extended_glob
|
2013-10-30 12:46:17 +08:00
|
|
|
[[ $arg == [[:alpha:]_][[:alnum:]_]#(|\[*\])=* ]]
|
2011-06-13 04:57:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Check if the argument is a path.
|
|
|
|
_zsh_highlight_main_highlighter_check_path()
|
|
|
|
{
|
2011-09-24 20:42:55 +08:00
|
|
|
setopt localoptions nonomatch
|
2011-09-21 01:13:03 +08:00
|
|
|
local expanded_path; : ${expanded_path:=${(Q)~arg}}
|
2011-09-22 21:18:24 +08:00
|
|
|
[[ -z $expanded_path ]] && return 1
|
|
|
|
[[ -e $expanded_path ]] && return 0
|
2013-08-07 08:21:15 +08:00
|
|
|
# Search the path in CDPATH
|
2013-10-21 20:18:38 +08:00
|
|
|
local cdpath_dir
|
2013-08-07 08:21:15 +08:00
|
|
|
for cdpath_dir in $cdpath ; do
|
|
|
|
[[ -e "$cdpath_dir/$expanded_path" ]] && return 0
|
|
|
|
done
|
2011-09-22 21:18:24 +08:00
|
|
|
[[ ! -e ${expanded_path:h} ]] && return 1
|
2013-07-25 10:41:09 +08:00
|
|
|
if [[ ${BUFFER[1]} != "-" && ${#BUFFER} == $end_pos ]]; then
|
|
|
|
local -a tmp
|
|
|
|
# got a path prefix?
|
|
|
|
tmp=( ${expanded_path}*(N) )
|
|
|
|
(( $#tmp > 0 )) && style_override=path_prefix && return 0
|
|
|
|
# or maybe an approximate path?
|
|
|
|
tmp=( (#a1)${expanded_path}*(N) )
|
|
|
|
(( $#tmp > 0 )) && style_override=path_approx && return 0
|
|
|
|
fi
|
2011-06-13 04:57:14 +08:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlight special chars inside double-quoted strings
|
|
|
|
_zsh_highlight_main_highlighter_highlight_string()
|
|
|
|
{
|
|
|
|
setopt localoptions noksharrays
|
2013-07-29 21:33:34 +08:00
|
|
|
local i j k style varflag
|
2011-06-13 04:57:14 +08:00
|
|
|
# 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
|
|
|
|
(( j = i + start_pos - 1 ))
|
|
|
|
(( k = j + 1 ))
|
|
|
|
case "$arg[$i]" in
|
2013-07-29 21:33:34 +08:00
|
|
|
'$' ) style=$ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]
|
|
|
|
(( varflag = 1))
|
|
|
|
;;
|
2011-06-13 04:57:14 +08:00
|
|
|
"\\") style=$ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]
|
2013-07-29 21:33:34 +08:00
|
|
|
for (( c = i + 1 ; c < end_pos - start_pos ; c += 1 )); do
|
|
|
|
[[ "$arg[$c]" != ([0-9,xX,a-f,A-F]) ]] && break
|
|
|
|
done
|
|
|
|
AA=$arg[$i+1,$c-1]
|
2013-08-09 14:24:14 +08:00
|
|
|
# Matching for HEX and OCT values like \0xA6, \xA6 or \012
|
2013-07-29 21:33:34 +08:00
|
|
|
if [[ "$AA" =~ "^(0*(x|X)[0-9,a-f,A-F]{1,2})" || "$AA" =~ "^(0[0-7]{1,3})" ]];then
|
|
|
|
(( k += $#MATCH ))
|
|
|
|
(( i += $#MATCH ))
|
|
|
|
else
|
|
|
|
(( k += 1 )) # Color following char too.
|
|
|
|
(( i += 1 )) # Skip parsing the escaped char.
|
|
|
|
fi
|
2013-08-09 14:24:14 +08:00
|
|
|
(( varflag = 0 )) # End of variable
|
2013-07-29 21:33:34 +08:00
|
|
|
;;
|
|
|
|
([^a-zA-Z0-9_]))
|
2013-08-09 14:24:14 +08:00
|
|
|
(( varflag = 0 )) # End of variable
|
2013-07-29 21:33:34 +08:00
|
|
|
continue
|
2011-06-13 04:57:14 +08:00
|
|
|
;;
|
2013-07-29 21:33:34 +08:00
|
|
|
*) [[ $varflag -eq 0 ]] && continue ;;
|
|
|
|
|
2011-06-13 04:57:14 +08:00
|
|
|
esac
|
2015-01-26 20:49:19 +08:00
|
|
|
_zsh_highlight_main_add_region_highlight $j $k $style
|
2011-06-13 04:57:14 +08:00
|
|
|
done
|
|
|
|
}
|