Skip to content

Commit f3e13a4

Browse files
committed
Use the '≡' symbol for stashes (suggested by carhartl)
1 parent 6e0ca47 commit f3e13a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prompt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ find_git_stash_status() {
212212
# This sets the stash marker if either the current commit or the current branch name is mentioned in the top stack entry.
213213
# CONSIDER: Alternatively we could have just grepped `git stash list` for either the commit_id or the branch_name. This would also indicate older matching stashes.
214214
if [[ "$stashed_commit" = "$current_commit" ]] || [[ -n "$current_branch" ]] && [[ "$stashed_branch" = "$current_branch" ]]; then
215-
git_stash_mark='(s)'
215+
git_stash_mark=''
216216
fi
217217
fi
218218
}

0 commit comments

Comments
 (0)