tide/functions/lean_git_prompt.fish
2020-04-29 14:52:58 -07:00

8 lines
201 B
Fish

function lean_git_prompt
set -l gitPrompt (fish_git_prompt)
set -l gitPrompt (string replace '(' '' $gitPrompt)
set -l gitPrompt (string replace ')' '' $gitPrompt)
echo $gitPrompt
end