mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-24 05:00:07 +00:00
do not assume that KITTY_SHELL_INTEGRATION is set after the initialization is complete
This commit is contained in:
parent
6708da43a1
commit
ba584f7094
1 changed files with 2 additions and 1 deletions
|
@ -8878,7 +8878,7 @@ function _p9k_iterm2_precmd() {
|
||||||
|
|
||||||
function _p9k_iterm2_preexec() {
|
function _p9k_iterm2_preexec() {
|
||||||
if [[ -t 1 ]]; then
|
if [[ -t 1 ]]; then
|
||||||
if (( ${+KITTY_SHELL_INTEGRATION} )); then
|
if (( ${+__p9k_use_osc133_c_cmdline} )); then
|
||||||
() {
|
() {
|
||||||
emulate -L zsh -o extended_glob -o no_multibyte
|
emulate -L zsh -o extended_glob -o no_multibyte
|
||||||
local MATCH MBEGIN MEND
|
local MATCH MBEGIN MEND
|
||||||
|
@ -9092,6 +9092,7 @@ _p9k_precmd_first() {
|
||||||
if [[ -n $KITTY_SHELL_INTEGRATION && KITTY_SHELL_INTEGRATION[(wIe)no-prompt-mark] -eq 0 ]]; then
|
if [[ -n $KITTY_SHELL_INTEGRATION && KITTY_SHELL_INTEGRATION[(wIe)no-prompt-mark] -eq 0 ]]; then
|
||||||
KITTY_SHELL_INTEGRATION+=' no-prompt-mark'
|
KITTY_SHELL_INTEGRATION+=' no-prompt-mark'
|
||||||
(( $+__p9k_force_term_shell_integration )) || typeset -gri __p9k_force_term_shell_integration=1
|
(( $+__p9k_force_term_shell_integration )) || typeset -gri __p9k_force_term_shell_integration=1
|
||||||
|
(( $+__p9k_use_osc133_c_cmdline )) || typeset -gri __p9k_use_osc133_c_cmdline=1
|
||||||
elif [[ $TERM_PROGRAM == WarpTerminal ]]; then
|
elif [[ $TERM_PROGRAM == WarpTerminal ]]; then
|
||||||
(( $+__p9k_force_term_shell_integration )) || typeset -gri __p9k_force_term_shell_integration=1
|
(( $+__p9k_force_term_shell_integration )) || typeset -gri __p9k_force_term_shell_integration=1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue