test harness: Actually test the new code.
Currently, without zsh/zle loaded, the tests silently fall back to the 5.2-and-earlier codepath; see: . https://github.com/zsh-users/zsh-syntax-highlighting/pull/356#issuecomment-243651251
This commit is contained in:
parent
b5249f17ab
commit
a868b6942e
|
@ -31,6 +31,9 @@
|
|||
emulate -LR zsh
|
||||
setopt localoptions extendedglob
|
||||
|
||||
# Required for add-zle-hook-widget.
|
||||
zmodload zsh/zle
|
||||
|
||||
# Argument parsing.
|
||||
if (( $# != 3 )) || [[ $1 == -* ]]; then
|
||||
print -r -- >&2 "$0: usage: $0 BUFFER HIGHLIGHTER BASENAME"
|
||||
|
|
|
@ -31,6 +31,9 @@
|
|||
|
||||
setopt NO_UNSET WARN_CREATE_GLOBAL
|
||||
|
||||
# Required for add-zle-hook-widget.
|
||||
zmodload zsh/zle
|
||||
|
||||
# Check an highlighter was given as argument.
|
||||
[[ -n "$1" ]] || {
|
||||
echo >&2 "Bail out! You must provide the name of a valid highlighter as argument."
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
# -------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
# Required for add-zle-hook-widget.
|
||||
zmodload zsh/zle
|
||||
|
||||
# Check an highlighter was given as argument.
|
||||
[[ -n "$1" ]] || {
|
||||
echo >&2 "Bail out! You must provide the name of a valid highlighter as argument."
|
||||
|
|
Loading…
Reference in New Issue