mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 22:07:25 -08:00
parent
258a1f18e1
commit
c0c230879a
|
@ -1,7 +1,7 @@
|
||||||
set --export POSH_THEME ::CONFIG::
|
set --export POSH_THEME ::CONFIG::
|
||||||
set --global POWERLINE_COMMAND "oh-my-posh"
|
set --global POWERLINE_COMMAND "oh-my-posh"
|
||||||
set --global CONDA_PROMPT_MODIFIER false
|
set --global CONDA_PROMPT_MODIFIER false
|
||||||
set --global omp_tooltip_command ""
|
set --global omp_tooltip_prompt ""
|
||||||
set --global omp_transient 0
|
set --global omp_transient 0
|
||||||
|
|
||||||
# template function for context loading
|
# template function for context loading
|
||||||
|
@ -43,13 +43,10 @@ function fish_right_prompt
|
||||||
set omp_transient 0
|
set omp_transient 0
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
if test -n "$omp_tooltip_command"
|
if test -n "$omp_tooltip_prompt"
|
||||||
set omp_tooltip_prompt (::OMP:: print tooltip --config $POSH_THEME --shell fish --error $omp_status_cache --shell-version $FISH_VERSION --command $omp_tooltip_command)
|
echo -n $omp_tooltip_prompt
|
||||||
if test -n "$omp_tooltip_prompt"
|
set omp_tooltip_prompt ""
|
||||||
echo -n $omp_tooltip_prompt
|
return
|
||||||
set omp_tooltip_command ""
|
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
::OMP:: print right --config $POSH_THEME --shell fish --error $omp_status_cache --execution-time $omp_duration --stack-count $omp_stack_count --shell-version $FISH_VERSION
|
::OMP:: print right --config $POSH_THEME --shell fish --error $omp_status_cache --execution-time $omp_duration --stack-count $omp_stack_count --shell-version $FISH_VERSION
|
||||||
end
|
end
|
||||||
|
@ -73,7 +70,14 @@ end
|
||||||
function _render_tooltip
|
function _render_tooltip
|
||||||
commandline --function expand-abbr
|
commandline --function expand-abbr
|
||||||
set omp_tooltip_command (commandline --current-buffer | string split --allow-empty -f1 ' ' | string collect)
|
set omp_tooltip_command (commandline --current-buffer | string split --allow-empty -f1 ' ' | string collect)
|
||||||
|
if not test -n "$omp_tooltip_command"
|
||||||
|
return
|
||||||
|
end
|
||||||
|
set omp_tooltip_prompt (::OMP:: print tooltip --config $POSH_THEME --shell fish --error $omp_status_cache --shell-version $FISH_VERSION --command $omp_tooltip_command)
|
||||||
commandline --insert " "
|
commandline --insert " "
|
||||||
|
if not test -n "$omp_tooltip_prompt"
|
||||||
|
return
|
||||||
|
end
|
||||||
commandline --function repaint
|
commandline --function repaint
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue