2022-08-07 19:35:53 -07:00
|
|
|
export POSH_THEME=::CONFIG::
|
2022-11-19 13:35:13 -08:00
|
|
|
export POSH_PID=$$
|
2021-05-16 10:13:15 -07:00
|
|
|
export POWERLINE_COMMAND="oh-my-posh"
|
2021-05-20 10:24:58 -07:00
|
|
|
export CONDA_PROMPT_MODIFIER=false
|
2023-01-22 11:06:31 -08:00
|
|
|
export POSH_PROMPT_COUNT=0
|
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
|
|
|
|
2023-02-02 05:02:46 -08:00
|
|
|
function _set_posh_cursor_position() {
|
|
|
|
# not supported in Midnight Commander
|
|
|
|
# see https://github.com/JanDeDobbeleer/oh-my-posh/issues/3415
|
|
|
|
if [[ -v MC_SID ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
local oldstty=$(stty -g)
|
|
|
|
stty raw -echo min 0
|
|
|
|
|
|
|
|
local pos
|
|
|
|
echo -en "\033[6n" > /dev/tty
|
|
|
|
read -r -d R pos
|
|
|
|
pos=${pos:2} # strip off the esc-[
|
|
|
|
local parts=(${(s:;:)pos})
|
|
|
|
|
|
|
|
stty $oldstty
|
|
|
|
|
|
|
|
export POSH_CURSOR_LINE=${parts[1]}
|
|
|
|
export POSH_CURSOR_COLUMN=${parts[2]}
|
|
|
|
}
|
|
|
|
|
2022-09-23 11:44:53 -07:00
|
|
|
# template function for context loading
|
|
|
|
function set_poshcontext() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-11 08:28:50 -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
|
|
|
}
|
|
|
|
|
2022-03-11 08:28:50 -08:00
|
|
|
function prompt_ohmyposh_precmd() {
|
2020-12-31 02:31:12 -08:00
|
|
|
omp_last_error=$?
|
2021-04-19 13:38:28 -07:00
|
|
|
omp_stack_count=${#dirstack[@]}
|
2020-12-23 04:00:50 -08:00
|
|
|
omp_elapsed=-1
|
|
|
|
if [ $omp_start_time ]; then
|
2023-01-30 20:32:40 -08:00
|
|
|
local omp_now=$(::OMP:: get millis --shell=zsh)
|
2020-12-23 04:00:50 -08:00
|
|
|
omp_elapsed=$(($omp_now-$omp_start_time))
|
|
|
|
fi
|
2023-01-22 11:06:31 -08:00
|
|
|
count=$((POSH_PROMPT_COUNT+1))
|
|
|
|
export POSH_PROMPT_COUNT=$count
|
2022-09-23 11:44:53 -07:00
|
|
|
set_poshcontext
|
2023-02-02 05:02:46 -08:00
|
|
|
_set_posh_cursor_position
|
2022-04-20 10:16:02 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
2022-03-11 08:28:50 -08:00
|
|
|
if [ "$s" = "prompt_ohmyposh_preexec" ]; then
|
2020-12-23 04:00:50 -08:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
2022-03-11 08:28:50 -08:00
|
|
|
preexec_functions+=(prompt_ohmyposh_preexec)
|
2020-12-23 04:00:50 -08:00
|
|
|
|
|
|
|
for s in "${precmd_functions[@]}"; do
|
2022-03-11 08:28:50 -08:00
|
|
|
if [ "$s" = "prompt_ohmyposh_precmd" ]; then
|
2020-12-23 04:00:50 -08:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
2022-03-11 08:28:50 -08:00
|
|
|
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
|
|
|
|
2022-08-22 09:41:27 -07:00
|
|
|
# perform cleanup so a new initialization in current session works
|
2023-01-10 01:07:40 -08:00
|
|
|
if [[ "$(zle -lL self-insert)" = *"_posh-tooltip"* ]]; then
|
2022-08-22 09:41:27 -07:00
|
|
|
zle -N self-insert
|
|
|
|
fi
|
|
|
|
if [[ "$(zle -lL zle-line-init)" = *"_posh-zle-line-init"* ]]; then
|
|
|
|
zle -N zle-line-init
|
|
|
|
fi
|
|
|
|
|
2023-01-10 01:07:40 -08:00
|
|
|
function _posh-tooltip() {
|
2021-06-05 07:14:44 -07:00
|
|
|
# ignore an empty buffer
|
|
|
|
if [[ -z "$BUFFER" ]]; then
|
|
|
|
zle .self-insert
|
|
|
|
return
|
|
|
|
fi
|
2023-01-10 01:07:40 -08:00
|
|
|
|
|
|
|
local tooltip=$(::OMP:: print tooltip --config="$POSH_THEME" --shell=zsh --error="$omp_last_error" --command="$BUFFER" --shell-version="$ZSH_VERSION")
|
2021-06-05 07:14:44 -07:00
|
|
|
# ignore an empty tooltip
|
2022-08-22 09:41:27 -07:00
|
|
|
if [[ -n "$tooltip" ]]; then
|
2021-06-05 07:14:44 -07:00
|
|
|
RPROMPT=$tooltip
|
2021-07-03 09:38:23 -07:00
|
|
|
zle .reset-prompt
|
2021-06-05 07:14:44 -07:00
|
|
|
fi
|
2023-01-10 01:07:40 -08:00
|
|
|
|
2021-06-05 07:14:44 -07:00
|
|
|
zle .self-insert
|
|
|
|
}
|
|
|
|
|
2022-08-07 19:35:53 -07:00
|
|
|
function _posh-zle-line-init() {
|
2021-07-03 09:38:23 -07:00
|
|
|
[[ $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]
|
|
|
|
|
2022-04-20 10:16:02 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2023-01-10 01:07:40 -08:00
|
|
|
function enable_poshtooltips() {
|
|
|
|
zle -N _posh-tooltip
|
|
|
|
bindkey " " _posh-tooltip
|
|
|
|
}
|
|
|
|
|
|
|
|
function enable_poshtransientprompt() {
|
2021-07-03 09:38:23 -07:00
|
|
|
zle -N zle-line-init _posh-zle-line-init
|
2022-10-18 02:08:54 -07:00
|
|
|
|
|
|
|
# restore broken key bindings
|
2022-10-19 02:58:25 -07:00
|
|
|
# https://github.com/JanDeDobbeleer/oh-my-posh/discussions/2617#discussioncomment-3911044
|
2022-10-20 22:59:48 -07:00
|
|
|
bindkey '^[[F' end-of-line
|
|
|
|
bindkey '^[[H' beginning-of-line
|
2022-10-24 07:47:25 -07:00
|
|
|
_widgets=$(zle -la)
|
|
|
|
if [[ -n "${_widgets[(r)down-line-or-beginning-search]}" ]]; then
|
|
|
|
bindkey '^[[B' down-line-or-beginning-search
|
|
|
|
fi
|
|
|
|
if [[ -n "${_widgets[(r)up-line-or-beginning-search]}" ]]; then
|
2022-10-27 23:12:53 -07:00
|
|
|
bindkey '^[[A' up-line-or-beginning-search
|
2022-10-24 07:47:25 -07:00
|
|
|
fi
|
2023-01-10 01:07:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ "::TOOLTIPS::" = "true" ]]; then
|
|
|
|
enable_poshtooltips
|
2022-08-04 22:16:16 -07:00
|
|
|
fi
|
|
|
|
|
2023-01-10 01:07:40 -08:00
|
|
|
if [[ "::TRANSIENT::" = "true" ]]; then
|
|
|
|
enable_poshtransientprompt
|
|
|
|
fi
|