diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-01-03 18:40:17 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-01-03 18:40:17 +0000 |
commit | 76dc71f882d47f057167dff717194687b947aad9 (patch) | |
tree | e3f7b932edfbb69765252769d2d2b7cafa2e93f6 /Functions/VCS_Info | |
parent | 851663282a3ff6ca39412bd0ab7481b14e66f495 (diff) | |
download | zsh-76dc71f882d47f057167dff717194687b947aad9.tar.gz zsh-76dc71f882d47f057167dff717194687b947aad9.tar.xz zsh-76dc71f882d47f057167dff717194687b947aad9.zip |
Frank Terbeck: 26215: VCS_Info disable-patterns style
Diffstat (limited to 'Functions/VCS_Info')
-rw-r--r-- | Functions/VCS_Info/vcs_info | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Functions/VCS_Info/vcs_info b/Functions/VCS_Info/vcs_info index 7ecd1224a..a821e4d03 100644 --- a/Functions/VCS_Info/vcs_info +++ b/Functions/VCS_Info/vcs_info @@ -41,8 +41,9 @@ vcs_info () { emulate -L zsh setopt extendedglob + local pat local -i found - local -a enabled disabled + local -a enabled disabled dps local -x usercontext vcs rrn local -ix maxexports local -ax msgs @@ -64,6 +65,15 @@ vcs_info () { zstyle -a ":vcs_info:${vcs}:${usercontext}:${rrn}" "disable" disabled fi + zstyle -a ":vcs_info:${vcs}:${usercontext}:${rrn}" "disable-patterns" dps + + for pat in ${dps} ; do + if [[ ${PWD} == ${~pat} ]] ; then + [[ -n ${vcs_info_msg_0_} ]] && VCS_INFO_set --clear + return 0 + fi + done + VCS_INFO_maxexports (( found = 0 )) |