diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-09-21 21:11:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-21 21:11:05 +0200 |
commit | 8f07e26ba4f00ac1d53d04c888e678ceec315c9d (patch) | |
tree | 0210795b930656e7b19ffcbf9e0d7deaa15a48eb | |
parent | 973c92cd91d595fde37a4dbd5a6389072654252f (diff) | |
parent | 7e5483d672aab9764231d9a569b6c7451474eecb (diff) | |
download | zsh-8f07e26ba4f00ac1d53d04c888e678ceec315c9d.tar.gz zsh-8f07e26ba4f00ac1d53d04c888e678ceec315c9d.tar.bz2 zsh-8f07e26ba4f00ac1d53d04c888e678ceec315c9d.zip |
Add check for git and bzr to agnoster theme (#5432)
Plugin command-not-found on Arch Linux returns 0 if git or bzr is found in repos, hence outputting unwanted pkgfile output.
Checking if the commands exist first fixes all such issues.
-rw-r--r-- | themes/agnoster.zsh-theme | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index e1a294ee8..07546fd34 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -86,7 +86,7 @@ prompt_context() { # Git: branch/detached head, dirty status prompt_git() { - + (( $+commands[git] )) || return local PL_BRANCH_CHAR () { local LC_ALL="" LC_CTYPE="en_US.UTF-8" @@ -128,6 +128,7 @@ prompt_git() { } prompt_bzr() { + (( $+commands[bzr] )) || return if (bzr status >/dev/null 2>&1); then status_mod=`bzr status | head -n1 | grep "modified" | wc -m` status_all=`bzr status | head -n1 | wc -m` |