diff options
author | 🐈 <88maomao@gmail.com> | 2019-02-06 12:51:41 +0300 |
---|---|---|
committer | 🐈 <88maomao@gmail.com> | 2019-02-06 12:51:41 +0300 |
commit | d1fbc1b889f63f6ea3e9672b7069133493ccab8a (patch) | |
tree | 7577e7cf46f85c6f5b4e239a9b629d59cfc0564f /functions | |
parent | 0b2990b88578bf758147180161c7909f267a930a (diff) |
Hide errors from git ls-files
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/vcs.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh index cb53dd3e..04a07e5d 100755 --- a/functions/vcs.zsh +++ b/functions/vcs.zsh @@ -15,10 +15,10 @@ function +vi-git-untracked() { # dump out if we're outside a git repository (which includes being in the .git folder) [[ $? != 0 || -z $repoTopLevel ]] && return - local untrackedFiles=$(command git ls-files --others --exclude-standard "${repoTopLevel}") + local untrackedFiles=$(command git ls-files --others --exclude-standard "${repoTopLevel}" 2> /dev/null) if [[ -z $untrackedFiles && "$POWERLEVEL9K_VCS_SHOW_SUBMODULE_DIRTY" == "true" ]]; then - untrackedFiles+=$(command git submodule foreach --quiet --recursive 'command git ls-files --others --exclude-standard') + untrackedFiles+=$(command git submodule foreach --quiet --recursive 'command git ls-files --others --exclude-standard' 2> /dev/null) fi [[ -z $untrackedFiles ]] && return |