mirror of
https://github.com/zsh-users/zsh-syntax-highlighting
synced 2025-01-07 11:19:31 +00:00
tests: Skip when zsh/pcre is not available
This commit is contained in:
parent
ce1be4153d
commit
2919679ee8
@ -27,12 +27,16 @@
|
|||||||
# vim: ft=zsh sw=2 ts=2 et
|
# vim: ft=zsh sw=2 ts=2 et
|
||||||
# -------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
setopt RE_MATCH_PCRE
|
if zmodload -s zsh/pcre; then
|
||||||
|
setopt RE_MATCH_PCRE
|
||||||
|
|
||||||
ZSH_HIGHLIGHT_REGEXP+=('\bsudo\b' 'fg=white,bold,bg=red')
|
ZSH_HIGHLIGHT_REGEXP+=('\bsudo\b' 'fg=white,bold,bg=red')
|
||||||
|
|
||||||
BUFFER='sudo ls'
|
BUFFER='sudo ls'
|
||||||
|
|
||||||
expected_region_highlight=(
|
expected_region_highlight=(
|
||||||
"1 4 fg=white,bold,bg=red"
|
"1 4 fg=white,bold,bg=red"
|
||||||
)
|
)
|
||||||
|
else
|
||||||
|
skip_test='Test requires zsh/pcre'
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user