mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-24 11:41:15 -03:00
This was broken for 4.0 because it used `{}` command grouping.
Instead just do one of the things the fish_git_prompt does.
(the default isn't usable here because it gets the sha from elsewhere)
53 lines
2.0 KiB
Fish
53 lines
2.0 KiB
Fish
# name: Acidhub
|
|
# author: Acidhub - https://acidhub.click/
|
|
|
|
function fish_prompt -d "Write out the prompt"
|
|
set -l laststatus $status
|
|
|
|
set -l git_info
|
|
if git rev-parse 2>/dev/null
|
|
set -l git_branch (
|
|
command git symbolic-ref HEAD 2>/dev/null | string replace 'refs/heads/' ''
|
|
or command git describe HEAD 2>/dev/null
|
|
or echo unknown
|
|
)
|
|
set git_branch (set_color -o blue)"$git_branch"
|
|
set -l git_status
|
|
if git rev-parse --quiet --verify HEAD >/dev/null
|
|
and not command git diff-index --quiet HEAD --
|
|
|
|
for i in (git status --porcelain | string sub -l 2 | sort | uniq)
|
|
switch $i
|
|
case "."
|
|
set git_status "$git_status"(set_color green)✚
|
|
case " D"
|
|
set git_status "$git_status"(set_color red)✖
|
|
case "*M*"
|
|
set git_status "$git_status"(set_color green)✱
|
|
case "*R*"
|
|
set git_status "$git_status"(set_color purple)➜
|
|
case "*U*"
|
|
set git_status "$git_status"(set_color brown)═
|
|
case "??"
|
|
set git_status "$git_status"(set_color red)≠
|
|
end
|
|
end
|
|
else
|
|
set git_status (set_color green):
|
|
end
|
|
set git_info "(git$git_status$git_branch"(set_color white)")"
|
|
end
|
|
|
|
# Disable PWD shortening by default.
|
|
set -q fish_prompt_pwd_dir_length
|
|
or set -lx fish_prompt_pwd_dir_length 0
|
|
|
|
set_color -b black
|
|
printf '%s%s%s%s%s%s%s%s%s%s%s%s%s' (set_color -o white) '❰' (set_color green) $USER (set_color white) '❙' (set_color yellow) (prompt_pwd) (set_color white) $git_info (set_color white) '❱' (set_color white)
|
|
if test $laststatus -eq 0
|
|
printf "%s✔%s≻%s " (set_color -o green) (set_color white) (set_color normal)
|
|
else
|
|
printf "%s✘%s≻%s " (set_color -o red) (set_color white) (set_color normal)
|
|
end
|
|
end
|