mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-26 05:22:26 +03:00
9 lines
252 B
Fish
9 lines
252 B
Fish
function _tide_item_git_prompt
|
|
if set -l gitPrompt (fish_git_prompt)
|
|
|
|
set -l gitPrompt (string replace '(' '' $gitPrompt)
|
|
set -l gitPrompt (string replace ')' '' $gitPrompt)
|
|
|
|
printf '%s ' (string trim $gitPrompt)
|
|
end
|
|
end |