disable re_match_pcre, otherwise we can get an error when users enable this option without having zsh/pcre module
This commit is contained in:
parent
9c3ecab81e
commit
5ea5d4bc19
|
@ -1,4 +1,4 @@
|
||||||
if [[ $__p9k_sourced != 12 ]]; then
|
if [[ $__p9k_sourced != 13 ]]; then
|
||||||
>&2 print -P ""
|
>&2 print -P ""
|
||||||
>&2 print -P "[%F{1}ERROR%f]: Corrupted powerlevel10k installation."
|
>&2 print -P "[%F{1}ERROR%f]: Corrupted powerlevel10k installation."
|
||||||
>&2 print -P ""
|
>&2 print -P ""
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
# Leading spaces before `local` are important. Otherwise Antigen will remove `local` (!!!).
|
# Leading spaces before `local` are important. Otherwise Antigen will remove `local` (!!!).
|
||||||
# __p9k_trapint is to work around bugs in zsh: https://www.zsh.org/mla/workers/2020/msg00612.html.
|
# __p9k_trapint is to work around bugs in zsh: https://www.zsh.org/mla/workers/2020/msg00612.html.
|
||||||
# Likewise for `trap ":"` instead of the plain `trap ""`.
|
# Likewise for `trap ":"` instead of the plain `trap ""`.
|
||||||
typeset -gr __p9k_intro_base='emulate -L zsh -o no_hist_expand -o extended_glob -o no_prompt_bang -o prompt_percent -o no_prompt_subst -o no_aliases -o no_bg_nice -o typeset_silent
|
typeset -gr __p9k_intro_base='emulate -L zsh -o no_hist_expand -o extended_glob -o no_prompt_bang -o prompt_percent -o no_prompt_subst -o no_aliases -o no_bg_nice -o typeset_silent -o no_rematch_pcre
|
||||||
(( $+__p9k_trapped )) || { local -i __p9k_trapped; trap : INT; trap "trap ${(q)__p9k_trapint:--} INT" EXIT }
|
(( $+__p9k_trapped )) || { local -i __p9k_trapped; trap : INT; trap "trap ${(q)__p9k_trapint:--} INT" EXIT }
|
||||||
local -a match mbegin mend
|
local -a match mbegin mend
|
||||||
local -i MBEGIN MEND OPTIND
|
local -i MBEGIN MEND OPTIND
|
||||||
|
@ -57,7 +57,7 @@ function _p9k_init_locale() {
|
||||||
if [[ $__p9k_dump_file != $__p9k_instant_prompt_dump_file ]] && (( ! $+functions[_p9k_preinit] )) && source $__p9k_dump_file 2>/dev/null && (( $+functions[_p9k_preinit] )); then
|
if [[ $__p9k_dump_file != $__p9k_instant_prompt_dump_file ]] && (( ! $+functions[_p9k_preinit] )) && source $__p9k_dump_file 2>/dev/null && (( $+functions[_p9k_preinit] )); then
|
||||||
_p9k_preinit
|
_p9k_preinit
|
||||||
fi
|
fi
|
||||||
typeset -gr __p9k_sourced=12
|
typeset -gr __p9k_sourced=13
|
||||||
if [[ $ZSH_VERSION == (5.<1->*|<6->.*) ]]; then
|
if [[ $ZSH_VERSION == (5.<1->*|<6->.*) ]]; then
|
||||||
if [[ -w $__p9k_root_dir && -w $__p9k_root_dir/internal && -w $__p9k_root_dir/gitstatus ]]; then
|
if [[ -w $__p9k_root_dir && -w $__p9k_root_dir/internal && -w $__p9k_root_dir/gitstatus ]]; then
|
||||||
local f
|
local f
|
||||||
|
|
Loading…
Reference in New Issue