From 69f92eed2fdb79bbf67e9d20fcfcc5c27888678a Mon Sep 17 00:00:00 2001 From: Leonid Volnitsky Date: Sat, 20 Feb 2016 14:08:43 +0200 Subject: fix: current directory display, was not abbrivated at home dir --- git-prompt.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/git-prompt.sh b/git-prompt.sh index d1e88b3..cd41fbe 100755 --- a/git-prompt.sh +++ b/git-prompt.sh @@ -177,7 +177,15 @@ cwd_truncate() { # arg1: max path lenght # returns abbrivated $PWD in public "cwd" var + if [[ $PWD == $HOME ]]; then + cwd="~" + return + else + cwd=$PWD + fi + cwd="${PWD/$HOME/~}" # substitute "~" + return case $1 in full) @@ -423,6 +431,7 @@ parse_git_status() { #git_dir=` git rev-parse --git-dir 2> /dev/null` [[ -n ${git_dir/./} ]] || return 1 + [[ -f ${git_dir}/git-prompt-ignored ]] && return 1 vcs=git -- cgit v1.2.3