From 0deff4f99aaf2e6389ab441eec04c68a9a27681d Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Wed, 1 Jun 2011 21:21:04 +0000 Subject: Valentin Haenel: 29431: Hook example for signaling untracked files in git repositories --- Misc/vcs_info-examples | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Misc') diff --git a/Misc/vcs_info-examples b/Misc/vcs_info-examples index bc10a2179..860297c9e 100644 --- a/Misc/vcs_info-examples +++ b/Misc/vcs_info-examples @@ -155,6 +155,23 @@ function +vi-hg-shorthash() { ret=1 } +### Display the existence of files not yet known to VCS + +### git: Show marker (T) if there are untracked files in repository +# Make sure you have added staged to your 'formats': %c +zstyle ':vcs_info:git*+set-message:*' hooks git-untracked + ++vi-git-untracked(){ + if [[ $(git rev-parse --is-inside-work-tree 2> /dev/null) == 'true' ]] && \ + git status --porcelain | grep '??' &> /dev/null ; then + # This will show the marker if there are any untracked files in repo. + # If instead you want to show the marker only if there are untracked + # files in $PWD, use: + #[[ -n $(git ls-files --others --exclude-standard) ]] ; then + hook_com[staged]+='T' + fi +} + ### Compare local changes to remote changes -- cgit 1.4.1