X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e7aef48f33e934106d1a50201d9f098f9886d7ec..e1a6e3db0b8e15f9fd576341642acfebe0f13b68:/.zsh/zshrc/60_vcsprompt diff --git a/.zsh/zshrc/60_vcsprompt b/.zsh/zshrc/60_vcsprompt index b5c15f1..237f6c0 100644 --- a/.zsh/zshrc/60_vcsprompt +++ b/.zsh/zshrc/60_vcsprompt @@ -35,12 +35,12 @@ __git_get_branch() __git_print_preprompt() { local output - output=(${(f):-"$(git diff --stat --relative)"}) + output=(${(f):-"$(git diff --stat --relative 2>/dev/null)"}) if [[ ${#output} -gt 1 ]]; then echo changes on filesystem: print "${(F)output[1,-2]}" fi - output=(${(f):-"$(git diff --cached --stat --relative)"}) + output=(${(f):-"$(git diff --cached --stat --relative 2>/dev/null)"}) if [[ ${#output} -gt 1 ]]; then echo cached/staged changes: print "${(F)output[1,-2]}" @@ -205,7 +205,7 @@ __vcs_print_preprompt() esac } -if ! is_root; then +if false && ! is_root; then # too dangerous to be run as root _update_vcs_prompt_vars_if_vcs_ran() {