1
0
Fork 0

fish: git sign

This commit is contained in:
Von Random 2023-01-25 02:29:54 +02:00
parent 936e6d3357
commit 997306b89d

View file

@ -1,6 +1,7 @@
if status is-interactive if status is-interactive
set prompt_sep_a \ue0b0 set prompt_sep_a \ue0b0
set prompt_bang \n\U1f41f\ set prompt_bang \n\U1f41f\
set git_sign \ue0a0
set color_fg brwhite set color_fg brwhite
set color_git_branch 3c3c3c set color_git_branch 3c3c3c
set color_git yellow blue red purple set color_git yellow blue red purple
@ -21,7 +22,7 @@ if status is-interactive
set git_branch (string match -r "\ (.+)\.\.\." "$line")[2] set git_branch (string match -r "\ (.+)\.\.\." "$line")[2]
string match -qr "\[behind" $line && set git_branch "$git_branch?" string match -qr "\[behind" $line && set git_branch "$git_branch?"
string match -qr "\[ahead" $line && set git_branch "$git_branch!" string match -qr "\[ahead" $line && set git_branch "$git_branch!"
prompt.add "$color_git_branch" "$git_branch" prompt.add "$color_git_branch" "$git_sign $git_branch"
else else
string match -qr "^.[MD]" "$line" && set git_count[1] (math $git_count[1] + 1) string match -qr "^.[MD]" "$line" && set git_count[1] (math $git_count[1] + 1)
string match -qr "^[MDARC]." "$line" && set git_count[2] (math $git_count[2] + 1) string match -qr "^[MDARC]." "$line" && set git_count[2] (math $git_count[2] + 1)