diff options
author | Simon Ruderich <rudi_s@users.sourceforge.net> | 2012-03-23 16:34:38 +0000 |
---|---|---|
committer | Simon Ruderich <rudi_s@users.sourceforge.net> | 2012-03-23 16:34:38 +0000 |
commit | d5db14e3c99f6fb11d839bea017c76276f98cb81 (patch) | |
tree | 1812dfc91aa09ac81270123bccca31cdbf7069bd /Misc/vcs_info-examples | |
parent | 69858756341e0e5f60c0e278608f96a7fb1760b7 (diff) | |
download | zsh-d5db14e3c99f6fb11d839bea017c76276f98cb81.tar.gz zsh-d5db14e3c99f6fb11d839bea017c76276f98cb81.tar.xz zsh-d5db14e3c99f6fb11d839bea017c76276f98cb81.zip |
30366: Misc/vcs_info-examples: Fix outdated quilt examples.
Diffstat (limited to 'Misc/vcs_info-examples')
-rw-r--r-- | Misc/vcs_info-examples | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Misc/vcs_info-examples b/Misc/vcs_info-examples index ba3b2c367..0afb79084 100644 --- a/Misc/vcs_info-examples +++ b/Misc/vcs_info-examples @@ -392,9 +392,9 @@ function foobar() { } # In standalone-mode, vcs_info pretends as if quilt actually was a VCS. -# Well, kind of. The vcs string is set to '-quilt-'. So let's define a -# format just for that mode: -zstyle ':vcs_info:-quilt-:*' formats " [%s%Q]-" +# Well, kind of. The vcs string is set to '-quilt-.quilt-standalone'. So let's +# define a format just for that mode: +zstyle ':vcs_info:-quilt-.quilt-standalone:*' formats " [%s%Q]-" # As with other format insertions, you got total control over what is being # inserted. The `%Q' insertion is controlled by the `quiltformat' and @@ -411,16 +411,16 @@ zstyle ':vcs_info:-quilt-:*' formats " [%s%Q]-" # There are two hooks you can use to setup what these contain. Those would be # `gen-applied-string' and `gen-unapplied-string'. We'll go with the default # here... ...no need to go into every insane detail. -zstyle ':vcs_info:*' quiltformat '#%p [%n|%c]' +zstyle ':vcs_info:*' patch-format '#%p [%n|%c]' # quilt-nopatch-format (default: "no patch applied") -zstyle ':vcs_info:*' quilt-nopatch-format '#cleeaaaaan!1!!' +zstyle ':vcs_info:*' nopatch-format '#cleeaaaaan!1!!' # To retrieve information about unapplied patches, vcs_info invokes `quilt' # itself. Even though that's pretty quick, it's not needed for the default # behaviour. If we want to have `%c' and `%u' to contain meaningful data, # we have to enable retrieval of unapplied data: -zstyle ':vcs_info:*' quilt-get-unapplied true +zstyle ':vcs_info:*' get-unapplied true # With quilt, the location of its patches are configurable. It's either # $QUILT_PATCHES or `patches' if that's unset. Let's assume we're a debian |