Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Fix typo in git_status section (deleted != unmerged) #159

Merged
merged 1 commit into from
Feb 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion functions/__sf_section_git_status.fish
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function __sf_section_git_status -d "Display the current git status"
set git_status deleted $git_status
end
if test (string match '*U*' $i)
set git_status deleted $git_status
set git_status unmerged $git_status
end
end

Expand Down