Browse Source

versionstamp: Handle NO_FUNCTION_ARGZERO.

Sourcing zsh-syntax-highlighting.zsh without FUNCTION_ARGZERO doesn't work (for
reasons unrelated to this branch), but now errors out gracefully.  The failure mode
before this branch was:

    zsh-syntax-highlighting: highlighters directory '/usr/local/bin/highlighters' not found.

where /usr/local/bin is dirname() of the zsh binary.
pull/214/head
Daniel Shahaf 9 years ago
parent
commit
9c56c624e9
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      zsh-syntax-highlighting.zsh

+ 10
- 1
zsh-syntax-highlighting.zsh View File

@ -29,7 +29,16 @@
# -------------------------------------------------------------------------------------------------
ZSH_HIGHLIGHT_VERSION=$(<"$0:h"/.version)
if [[ -o function_argzero ]]; then
# $0 is reliable
ZSH_HIGHLIGHT_VERSION=$(<"$0:h"/.version)
else
# $0 is unreliable, so the call to _zsh_highlight_load_highlighters will fail.
# TODO: If 'zmodload zsh/parameter' is available, ${funcsourcetrace[1]%:*} might serve as a substitute?
# TODO: also check POSIX_ARGZERO, but not it's not available in older zsh
echo "zsh-syntax-highlighting: error: not compatible with FUNCTION_ARGZERO" >&2
return 1
fi
# -------------------------------------------------------------------------------------------------
# Core highlighting update system

Loading…
Cancel
Save