mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
parent
33ac83551e
commit
f817acf963
|
@ -54,11 +54,6 @@ function _omp_hook() {
|
|||
local omp_stack_count=$((${#DIRSTACK[@]} - 1))
|
||||
local omp_elapsed=-1
|
||||
local no_exit_code="true"
|
||||
local omp_columns=0
|
||||
|
||||
if [[ -n "$COLUMNS" ]]; then
|
||||
omp_columns=$COLUMNS
|
||||
fi
|
||||
|
||||
if [[ -n "$omp_start_time" ]]; then
|
||||
local omp_now=$(::OMP:: get millis --shell=bash)
|
||||
|
@ -70,7 +65,7 @@ function _omp_hook() {
|
|||
set_poshcontext
|
||||
_set_posh_cursor_position
|
||||
|
||||
PS1="$(::OMP:: print primary --config="$POSH_THEME" --shell=bash --shell-version="$BASH_VERSION" --status="$ret" --pipestatus="${pipeStatus[*]}" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --no-status="$no_exit_code" --terminal-width="$omp_columns" | tr -d '\0')"
|
||||
PS1="$(::OMP:: print primary --config="$POSH_THEME" --shell=bash --shell-version="$BASH_VERSION" --status="$ret" --pipestatus="${pipeStatus[*]}" --execution-time="$omp_elapsed" --stack-count="$omp_stack_count" --no-status="$no_exit_code" --terminal-width="${COLUMNS-0}" | tr -d '\0')"
|
||||
return $ret
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue