2022-08-07 19:35:53 -07:00
|
|
|
export POSH_THEME=::CONFIG::
|
2023-03-26 08:26:39 -07:00
|
|
|
export POSH_SHELL_VERSION=$ZSH_VERSION
|
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
|
2024-05-19 00:04:36 -07:00
|
|
|
export ZLE_RPROMPT_INDENT=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
|
2023-02-04 02:17:10 -08:00
|
|
|
if [[ "::CURSOR::" != "true" ]] || [[ -v MC_SID ]]; then
|
2024-06-20 02:57:17 -07:00
|
|
|
return
|
2023-02-02 05:02:46 -08:00
|
|
|
fi
|
|
|
|
|
|
|
|
local oldstty=$(stty -g)
|
|
|
|
stty raw -echo min 0
|
|
|
|
|
|
|
|
local pos
|
2024-07-10 05:28:08 -07:00
|
|
|
echo -en "\033[6n" >/dev/tty
|
2023-02-02 05:02:46 -08:00
|
|
|
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() {
|
2023-05-17 14:27:21 -07:00
|
|
|
if [[ "::FTCS_MARKS::" = "true" ]]; then
|
|
|
|
printf "\033]133;C\007"
|
|
|
|
fi
|
2024-07-06 10:30:48 -07:00
|
|
|
|
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() {
|
2024-07-10 05:28:08 -07:00
|
|
|
omp_status_cache=$?
|
|
|
|
omp_pipestatus_cache=(${pipestatus[@]})
|
2021-04-19 13:38:28 -07:00
|
|
|
omp_stack_count=${#dirstack[@]}
|
2020-12-23 04:00:50 -08:00
|
|
|
omp_elapsed=-1
|
2024-07-10 05:28:08 -07:00
|
|
|
omp_no_exit_code="true"
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2020-12-23 04:00:50 -08:00
|
|
|
if [ $omp_start_time ]; then
|
2023-01-30 20:32:40 -08:00
|
|
|
local omp_now=$(::OMP:: get millis --shell=zsh)
|
2024-07-10 05:28:08 -07:00
|
|
|
omp_elapsed=$(($omp_now - $omp_start_time))
|
|
|
|
omp_no_exit_code="false"
|
2020-12-23 04:00:50 -08:00
|
|
|
fi
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
if [[ "${omp_pipestatus_cache[-1]}" != "$omp_status_cache" ]]; then
|
|
|
|
omp_pipestatus_cache=("$omp_status_cache")
|
2024-06-20 02:57:17 -07:00
|
|
|
fi
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
count=$((POSH_PROMPT_COUNT + 1))
|
2023-01-22 11:06:31 -08:00
|
|
|
export POSH_PROMPT_COUNT=$count
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2022-09-23 11:44:53 -07:00
|
|
|
set_poshcontext
|
2023-02-02 05:02:46 -08:00
|
|
|
_set_posh_cursor_position
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
eval "$(::OMP:: print primary --config="$POSH_THEME" --status="$omp_status_cache" --pipestatus="${omp_pipestatus_cache[*]}" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --eval --shell=zsh --shell-version="$ZSH_VERSION" --no-status="$omp_no_exit_code")"
|
2020-12-23 04:00:50 -08:00
|
|
|
unset omp_start_time
|
|
|
|
}
|
|
|
|
|
2023-02-04 02:17:10 -08:00
|
|
|
# add hook functions
|
|
|
|
autoload -Uz add-zsh-hook
|
|
|
|
add-zsh-hook precmd prompt_ohmyposh_precmd
|
|
|
|
add-zsh-hook preexec prompt_ohmyposh_preexec
|
2021-03-20 11:32:15 -07:00
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
# Prevent incorrect behaviors when the initialization is executed twice in current session.
|
|
|
|
function _omp_cleanup() {
|
|
|
|
local omp_widgets=(
|
|
|
|
self-insert
|
|
|
|
zle-line-init
|
|
|
|
)
|
|
|
|
local widget
|
|
|
|
for widget in "${omp_widgets[@]}"; do
|
|
|
|
if [[ "${widgets[_omp_original::$widget]}" ]]; then
|
|
|
|
# Restore the original widget.
|
|
|
|
zle -A _omp_original::$widget $widget
|
|
|
|
elif [[ "${widgets[$widget]}" = user:_omp_* ]]; then
|
|
|
|
# Delete the OMP-defined widget.
|
|
|
|
zle -D $widget
|
2023-04-12 14:30:44 -07:00
|
|
|
fi
|
2024-07-14 19:59:13 -07:00
|
|
|
done
|
|
|
|
}
|
|
|
|
_omp_cleanup
|
|
|
|
unset -f _omp_cleanup
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
function _omp_render_tooltip() {
|
|
|
|
if [[ "$KEYS" != ' ' ]]; then
|
|
|
|
return
|
2023-04-12 14:30:44 -07:00
|
|
|
fi
|
2023-04-21 11:08:11 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
# Get the first word of command line as tip.
|
|
|
|
local tooltip_command=${${(MS)BUFFER##[[:graph:]]*}%%[[:space:]]*}
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
# Ignore an empty/repeated tooltip command.
|
|
|
|
if [[ -z "$tooltip_command" ]] || [[ "$tooltip_command" = "$omp_tooltip_command" ]]; then
|
2023-04-21 11:08:11 -07:00
|
|
|
return
|
|
|
|
fi
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
omp_tooltip_command="$tooltip_command"
|
|
|
|
local tooltip=$(::OMP:: print tooltip --config="$POSH_THEME" --status="$omp_status_cache" --pipestatus="${omp_pipestatus_cache[*]}" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --command="$tooltip_command" --shell=zsh --shell-version="$ZSH_VERSION" --no-status="$omp_no_exit_code")
|
2023-04-21 11:08:11 -07:00
|
|
|
if [[ -z "$tooltip" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
2024-07-06 10:30:48 -07:00
|
|
|
|
2023-04-21 11:08:11 -07:00
|
|
|
RPROMPT=$tooltip
|
|
|
|
zle .reset-prompt
|
2021-06-05 07:14:44 -07:00
|
|
|
}
|
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
function _omp_zle-line-init() {
|
2024-06-20 02:57:17 -07:00
|
|
|
[[ $CONTEXT == start ]] || return 0
|
2021-07-03 09:38:23 -07:00
|
|
|
|
2024-06-20 02:57:17 -07:00
|
|
|
# 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]
|
2021-07-03 09:38:23 -07:00
|
|
|
|
2024-07-10 05:28:08 -07:00
|
|
|
omp_tooltip_command=''
|
|
|
|
eval "$(::OMP:: print transient --config="$POSH_THEME" --status="$omp_status_cache" --pipestatus="${omp_pipestatus_cache[*]}" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --eval --shell=zsh --shell-version="$ZSH_VERSION" --no-status="$omp_no_exit_code")"
|
2024-06-20 02:57:17 -07:00
|
|
|
zle .reset-prompt
|
2021-07-03 09:38:23 -07:00
|
|
|
|
2024-06-20 02:57:17 -07:00
|
|
|
# Exit the shell if we receive EOT.
|
|
|
|
if [[ $ret == 0 && $KEYS == $'\4' ]]; then
|
|
|
|
exit
|
|
|
|
fi
|
2021-07-03 09:38:23 -07:00
|
|
|
|
2024-06-20 02:57:17 -07:00
|
|
|
if ((ret)); then
|
|
|
|
# TODO (fix): this is not equal to sending a SIGINT, since the status code ($?) is set to 1 instead of 130.
|
|
|
|
zle .send-break
|
|
|
|
else
|
|
|
|
# Enter
|
|
|
|
zle .accept-line
|
|
|
|
fi
|
|
|
|
return ret
|
2021-07-03 09:38:23 -07:00
|
|
|
}
|
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
# Helper function for calling a widget before the specified OMP function.
|
|
|
|
function _omp_call_widget() {
|
|
|
|
# The name of the OMP function.
|
|
|
|
local omp_func=$1
|
|
|
|
# The remainder are the widget to call and potential arguments.
|
|
|
|
shift
|
2023-01-10 01:07:40 -08:00
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
zle "$@" && shift 2 && $omp_func "$@"
|
2024-07-06 10:30:48 -07:00
|
|
|
}
|
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
# Create a widget with the specified OMP function.
|
|
|
|
# An existing widget will be preserved and decorated with the function.
|
|
|
|
function _omp_create_widget() {
|
|
|
|
# The name of the widget to create/decorate.
|
|
|
|
local widget=$1
|
|
|
|
# The name of the OMP function.
|
|
|
|
local omp_func=$2
|
|
|
|
|
|
|
|
case ${widgets[$widget]:-''} in
|
|
|
|
# Already decorated: do nothing.
|
|
|
|
user:_omp_decorated_*) ;;
|
|
|
|
|
|
|
|
# Non-existent: just create it.
|
|
|
|
'')
|
|
|
|
zle -N $widget $omp_func
|
|
|
|
;;
|
|
|
|
|
|
|
|
# User-defined or builtin: backup and decorate it.
|
|
|
|
*)
|
|
|
|
# Back up the original widget.
|
|
|
|
zle -A $widget _omp_original::$widget
|
|
|
|
eval "_omp_decorated_${(q)widget}() { _omp_call_widget ${(q)omp_func} _omp_original::${(q)widget} -- \"\$@\" }"
|
|
|
|
zle -N $widget _omp_decorated_$widget
|
|
|
|
;;
|
2024-07-06 10:30:48 -07:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2024-07-14 19:59:13 -07:00
|
|
|
# legacy functions
|
|
|
|
function enable_poshtooltips() {}
|
|
|
|
function enable_poshtransientprompt() {}
|
2023-01-10 01:07:40 -08:00
|
|
|
|
|
|
|
if [[ "::TOOLTIPS::" = "true" ]]; then
|
2024-07-14 19:59:13 -07:00
|
|
|
_omp_create_widget self-insert _omp_render_tooltip
|
2022-08-04 22:16:16 -07:00
|
|
|
fi
|
|
|
|
|
2023-01-10 01:07:40 -08:00
|
|
|
if [[ "::TRANSIENT::" = "true" ]]; then
|
2024-07-14 19:59:13 -07:00
|
|
|
_omp_create_widget zle-line-init _omp_zle-line-init
|
2023-01-10 01:07:40 -08:00
|
|
|
fi
|
2023-03-03 11:21:35 -08:00
|
|
|
|
|
|
|
if [[ "::UPGRADE::" = "true" ]]; then
|
2024-06-20 02:57:17 -07:00
|
|
|
echo "::UPGRADENOTICE::"
|
2023-03-03 11:21:35 -08:00
|
|
|
fi
|
2024-06-03 02:26:05 -07:00
|
|
|
|
|
|
|
if [[ "::AUTOUPGRADE::" = "true" ]]; then
|
2024-06-20 02:57:17 -07:00
|
|
|
::OMP:: upgrade
|
2024-06-03 02:26:05 -07:00
|
|
|
fi
|