diff options
Diffstat (limited to 'etc/sh/vcs-ps1.sh')
-rw-r--r-- | etc/sh/vcs-ps1.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/vcs-ps1.sh b/etc/sh/vcs-ps1.sh index d18a24a..b9a849a 100644 --- a/etc/sh/vcs-ps1.sh +++ b/etc/sh/vcs-ps1.sh @@ -128,7 +128,7 @@ shell_status_level() { } shell_status_jobs() { - JOBS="$(jobs -p | wc -l)" + JOBS="$(jobs | grep -v autojump | wc -l)" if [ "$JOBS" != 0 ]; then color -c red "$JOBS" fi |