diff options
author | Daniel Shahaf <danielsh@apache.org> | 2019-12-02 01:54:17 +0000 |
---|---|---|
committer | Daniel Shahaf <danielsh@apache.org> | 2019-12-02 01:54:24 +0000 |
commit | 27a64a16fb5407c64ff190f2af5182797ac048a8 (patch) | |
tree | d1dffc3ac4a1e3829783617c602ff67a83e0c467 /Misc | |
parent | a833fe4a18526b76b447e107233541e6e6596968 (diff) | |
download | zsh-27a64a16fb5407c64ff190f2af5182797ac048a8.tar.gz zsh-27a64a16fb5407c64ff190f2af5182797ac048a8.tar.xz zsh-27a64a16fb5407c64ff190f2af5182797ac048a8.zip |
unposted: vcs_info: Add an example of using $functions to find hooks by name.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/vcs_info-examples | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Misc/vcs_info-examples b/Misc/vcs_info-examples index 58dd8cf98..c46fad93a 100644 --- a/Misc/vcs_info-examples +++ b/Misc/vcs_info-examples @@ -212,6 +212,16 @@ function +vi-git-remotebranch() { } +### Derive hook names dynamically +# With the following line: +zstyle -e ':vcs_info:git+set-message:*' hooks 'reply=( ${${(k)functions[(I)[+]vi-git-set-message*]}#+vi-} )' +# Any function named `+vi-git-set-message-<anything>' would be automatically +# registered as a hook. For example: ++vi-git-set-message-foo() {} ++vi-git-set-message-bar() {} +# Both of these functions would be called, even if they are defined after the zstyle is set. + + ### hg: Show marker when the working directory is not on a branch head # This may indicate that running `hg up` will do something # NOTE: the branchheads.cache file is not updated with every Mercurial |