X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=admin%2Fprog%2Fbash_prompt;fp=admin%2Fprog%2Fbash_prompt;h=903a58b8bbaefd02d04a141006f268d7619307b7;hb=82a8602391583b330a7225432a7a61d3f2a1960b;hp=e4b3563b613ae78588eda1068b25cdc064a3dee8;hpb=5d095fb843cd453d7e63775c8da7c6d261d33c62;p=dotfiles.git diff --git a/admin/prog/bash_prompt b/admin/prog/bash_prompt index e4b3563..903a58b 100644 --- a/admin/prog/bash_prompt +++ b/admin/prog/bash_prompt @@ -43,6 +43,16 @@ short_curdir() { # https://github.com/necolas/dotfiles/blob/master/shell/bash_prompt and # https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh +_recurse_submodules() { + local command="$@" + local output="$($command 2>/dev/null)" + if [ -n "$output" ]; then + echo -n "$output" + return + fi + git submodule --quiet foreach $command 2>/dev/null +} + prompt_git() { local s="" local branchName="" @@ -57,22 +67,22 @@ prompt_git() { #git update-index --really-refresh -q &>/dev/null # check for unstaged changes - if [ -n "$(git ls-files --modified :/)" ]; then + if [ -n "$(_recurse_submodules git ls-files --modified :/)" ]; then s="$s*"; fi # check for uncommitted changes in the index - if ! $(git diff --quiet --ignore-submodules --cached); then + if [ -n "$(_recurse_submodules git diff --ignore-submodules --cached)" ]; then s="$s+"; fi # check for stashed files - if $(git rev-parse --verify refs/stash &>/dev/null); then + if [ -n "$(_recurse_submodules git rev-parse --verify refs/stash)" ]; then s="$s$"; fi # check for untracked files - if [ -n "$(git ls-files --others --exclude-standard :/)" ]; then + if [ -n "$(_recurse_submodules git ls-files --others --exclude-standard :/)" ]; then s="$s%"; fi