remove extra space from fish prompt

This commit is contained in:
sloane 2024-07-18 12:27:19 -04:00
parent d05a9a7607
commit b2a9422ff4
No known key found for this signature in database

View file

@ -27,5 +27,5 @@ function fish_prompt --description 'Write out the prompt'
set -l statusb_color (set_color $bold_flag $fish_color_status) set -l statusb_color (set_color $bold_flag $fish_color_status)
set -l prompt_status (__fish_print_pipestatus "[" "]" "|" "$status_color" "$statusb_color" $last_pipestatus) set -l prompt_status (__fish_print_pipestatus "[" "]" "|" "$status_color" "$statusb_color" $last_pipestatus)
echo -n -s ' ' (set_color $color_cwd) (prompt_pwd) $normal (fish_vcs_prompt) $normal " "$prompt_status $suffix " " echo -n -s (set_color $color_cwd) (prompt_pwd) $normal (fish_vcs_prompt) $normal " "$prompt_status $suffix " "
end end