oh-my-posh/src/shell/scripts/omp.zsh

101 lines
2.6 KiB
Bash
Raw Normal View History

export POSH_THEME='::CONFIG::'
export POWERLINE_COMMAND="oh-my-posh"
2021-05-20 10:24:58 -07:00
export CONDA_PROMPT_MODIFIER=false
2020-12-23 04:00:50 -08:00
2022-02-20 04:56:28 -08:00
# set secondary prompt
2022-03-25 11:03:37 -07:00
PS2="$(::OMP:: print secondary --config="$POSH_THEME" --shell=zsh)"
2022-02-20 04:56:28 -08:00
function prompt_ohmyposh_preexec() {
2022-03-19 11:32:40 -07:00
omp_start_time=$(::OMP:: get millis)
2020-12-23 04:00:50 -08:00
}
function prompt_ohmyposh_precmd() {
omp_last_error=$?
omp_stack_count=${#dirstack[@]}
2020-12-23 04:00:50 -08:00
omp_elapsed=-1
if [ $omp_start_time ]; then
2022-03-19 11:32:40 -07:00
omp_now=$(::OMP:: get millis)
2020-12-23 04:00:50 -08:00
omp_elapsed=$(($omp_now-$omp_start_time))
fi
eval "$(::OMP:: print primary --config="$POSH_THEME" --error="$omp_last_error" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --eval --shell=zsh --shell-version="$ZSH_VERSION")"
2020-12-23 04:00:50 -08:00
unset omp_start_time
unset omp_now
}
2021-07-03 09:38:23 -07:00
function _install-omp-hooks() {
2020-12-23 04:00:50 -08:00
for s in "${preexec_functions[@]}"; do
if [ "$s" = "prompt_ohmyposh_preexec" ]; then
2020-12-23 04:00:50 -08:00
return
fi
done
preexec_functions+=(prompt_ohmyposh_preexec)
2020-12-23 04:00:50 -08:00
for s in "${precmd_functions[@]}"; do
if [ "$s" = "prompt_ohmyposh_precmd" ]; then
2020-12-23 04:00:50 -08:00
return
fi
done
precmd_functions+=(prompt_ohmyposh_precmd)
2020-12-23 04:00:50 -08:00
}
if [ "$TERM" != "linux" ]; then
2021-07-03 09:38:23 -07:00
_install-omp-hooks
2020-12-23 04:00:50 -08:00
fi
2021-03-20 11:32:15 -07:00
function self-insert() {
2021-06-05 07:14:44 -07:00
# ignore an empty buffer
if [[ -z "$BUFFER" ]]; then
zle .self-insert
return
fi
# trigger a tip check only if the input is a space character
if [[ "$KEYS" = " " ]]; then
tooltip=$(::OMP:: print tooltip --config="$POSH_THEME" --shell=zsh --error="$omp_last_error" --command="$BUFFER" --shell-version="$ZSH_VERSION")
fi
2021-06-05 07:14:44 -07:00
# ignore an empty tooltip
if [[ ! -z "$tooltip" ]]; then
RPROMPT=$tooltip
2021-07-03 09:38:23 -07:00
zle .reset-prompt
2021-06-05 07:14:44 -07:00
fi
zle .self-insert
}
if [[ "::TOOLTIPS::" = "true" ]]; then
zle -N self-insert
fi
2021-07-03 09:38:23 -07:00
_posh-zle-line-init() {
[[ $CONTEXT == start ]] || return 0
# Start regular line editor
(( $+zle_bracketed_paste )) && print -r -n - $zle_bracketed_paste[1]
zle .recursive-edit
local -i ret=$?
(( $+zle_bracketed_paste )) && print -r -n - $zle_bracketed_paste[2]
eval "$(::OMP:: print transient --error="$omp_last_error" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --config="$POSH_THEME" --eval --shell=zsh --shell-version="$ZSH_VERSION")"
2021-07-03 09:38:23 -07:00
zle .reset-prompt
# If we received EOT, we exit the shell
if [[ $ret == 0 && $KEYS == $'\4' ]]; then
exit
fi
# Ctrl-C
if (( ret )); then
zle .send-break
else
# Enter
zle .accept-line
fi
return ret
}
if [[ "::TRANSIENT::" = "true" ]]; then
2021-07-03 09:38:23 -07:00
zle -N zle-line-init _posh-zle-line-init
fi
# legacy functions for backwards compatibility
function enable_poshtooltips() {}
function enable_poshtransientprompt() {}