From 45c04084ee90ed0fd8b719d14bdfadf0d62a9a1f Mon Sep 17 00:00:00 2001 From: Diogo Alexsander Cavilha Date: Wed, 5 Dec 2018 07:25:06 -0200 Subject: [PATCH] :pencil: Replace +nf for "?" sign to show there are untracked files --- prompt_styles/simple-double-line.sh | 2 +- prompt_styles/simple.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/prompt_styles/simple-double-line.sh b/prompt_styles/simple-double-line.sh index 28bfa46..961e4c4 100644 --- a/prompt_styles/simple-double-line.sh +++ b/prompt_styles/simple-double-line.sh @@ -14,7 +14,7 @@ fg_branch_status() { if [ "$git_number_untracked_files" -gt 0 ] then - info="${info}${blue}+${git_number_untracked_files}f${none} " + info="${info}${blue}?${none} " fi if [ "$git_number_changed_files" -gt 0 ] diff --git a/prompt_styles/simple.sh b/prompt_styles/simple.sh index 3732721..51ebef7 100644 --- a/prompt_styles/simple.sh +++ b/prompt_styles/simple.sh @@ -14,7 +14,7 @@ fg_branch_status() { if [ "$git_number_untracked_files" -gt 0 ] then - info="${info}${blue}+${git_number_untracked_files}f${none} " + info="${info}${blue}?${none} " fi if [ "$git_number_changed_files" -gt 0 ]