<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh/Misc, branch master</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom/Misc?h=master</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom/Misc?h=master'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2023-05-12T22:44:01Z</updated>
<entry>
<title>50612: vcs_info: fix typo</title>
<updated>2023-05-12T22:44:01Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2022-09-07T20:46:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9b9f3adde89e18945cf4e9029c500615d5092d87'/>
<id>urn:sha1:9b9f3adde89e18945cf4e9029c500615d5092d87</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: vcs_info: Add Vim modelines</title>
<updated>2022-01-29T16:01:39Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2022-01-29T11:08:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c055c6464de20da13a6c805f017543f94b6e0ca9'/>
<id>urn:sha1:c055c6464de20da13a6c805f017543f94b6e0ca9</id>
<content type='text'>
... for consistency with all other vcs_info function files.
</content>
</entry>
<entry>
<title>49128 (github #76): vcs_info-examples: optimize +vi-git-untracked()</title>
<updated>2021-07-06T01:56:07Z</updated>
<author>
<name>Suraj N. Kurapati</name>
<email>sunaku@riseup.net</email>
</author>
<published>2021-06-26T06:04:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d634a3d333027561eb2d96120f3d40a876f1dd6f'/>
<id>urn:sha1:d634a3d333027561eb2d96120f3d40a876f1dd6f</id>
<content type='text'>
Speed up the prompt on large and/or deep working directories by
stopping grep(1) as soon as it finds a single match, with `-q`.
Also, correct the regexp by adding a ^ anchor and increase its
specificity by accounting for the space in Porcelain Format v1.

Previously, +vi-git-untracked() waited for grep(1) to find all
matches of untracked files, redirecting them away to /dev/null,
before finally concluding that untracked files do indeed exist.

With this patch, I see 4x speedup on a large Git-enabled $HOME:

    $ time (git status --porcelain | wc -l)
    212
    0.01s user 0.02s system 0% cpu 9.021 total

    $ time (git status --porcelain | grep '??' &amp;&gt;/dev/null)
    0.01s user 0.02s system 0% cpu 12.294 total

    $ time (git status --porcelain | grep -q '^?? ' 2&gt;/dev/null)
    0.01s user 0.01s system 0% cpu 3.097 total

Note that `-q` for grep(1) is in POSIX (IEEE Std 1003.1-2017):
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/grep.html

See discussion https://www.zsh.org/mla/workers/2021/msg01354.html
</content>
</entry>
<entry>
<title>48435 (tweaked): vcs_info docs: applied-string/unapplied-string: Correct an omission in the documentation and add an example.</title>
<updated>2021-04-20T23:38:04Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2021-04-07T20:22:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b110d6d5afe2c8529799b4ebd433399f080bcdf0'/>
<id>urn:sha1:b110d6d5afe2c8529799b4ebd433399f080bcdf0</id>
<content type='text'>
The example code is a reduced version of my function from workers/47519,
with one bug fixed.  (In workers/47519, if $1 doesn't contain spaces -
which is the case under hg mq - then $H and $s will be set to the same
value.)

Tweaked: Extended the contrib.yo hunk with details about mq.
</content>
</entry>
<entry>
<title>48528/0002: vcs_info git docs: ahead/behind commits: Reduce the number of forks</title>
<updated>2021-04-20T22:34:34Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2021-04-13T13:56:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c40a63ab673d270d7648b3d057e1c7c42cce73b6'/>
<id>urn:sha1:c40a63ab673d270d7648b3d057e1c7c42cce73b6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>48528/0001: vcs_info git docs: ahead/behind commits: Don't run rev-list when that would fail</title>
<updated>2021-04-20T22:34:34Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2021-04-13T13:56:36Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d9ac5916ba17889abf094c1ac45d88f431338d9c'/>
<id>urn:sha1:d9ac5916ba17889abf094c1ac45d88f431338d9c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>48525: vcs_info git docs: ahead/behind commits: Run fewer external programs</title>
<updated>2021-04-13T13:55:48Z</updated>
<author>
<name>Tim Lee</name>
<email>progscriptclone@gmail.com</email>
</author>
<published>2021-04-13T11:58:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3b631babec67c15c893c0d31f8aaaaaa06ca8cfa'/>
<id>urn:sha1:3b631babec67c15c893c0d31f8aaaaaa06ca8cfa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: vcs_info-examples: Fix condition</title>
<updated>2020-12-05T18:25:57Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2020-12-05T18:23:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=42b5371d7013ae581ee6095c5922ed8588446a96'/>
<id>urn:sha1:42b5371d7013ae581ee6095c5922ed8588446a96</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted (cf. GitHub #11): vcs_info hg: docs: Change an example to not use a hex dump incantation that may replace some bytes' values with asterisks.</title>
<updated>2020-07-12T13:06:38Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-07-12T13:04:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ad47c2d9078232d4a515b6dac2c5a8a8b05b16e9'/>
<id>urn:sha1:ad47c2d9078232d4a515b6dac2c5a8a8b05b16e9</id>
<content type='text'>
Discussion: https://github.com/zsh-users/zsh/pull/11#issuecomment-457970494 et seq

Incidentally, GitHub #11 is also where workers/39786 (commit
zsh-5.2-578-g74aa45910) was first reported.
</content>
</entry>
<entry>
<title>45269: Fix misspellings in completions and elsewhere.</title>
<updated>2020-01-09T13:42:02Z</updated>
<author>
<name>Jens Schleusener</name>
<email>Jens.Schleusener@fossies.org</email>
</author>
<published>2020-01-09T13:39:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=11dbe4c286330f81fae5ac6d5f698f5ddb748710'/>
<id>urn:sha1:11dbe4c286330f81fae5ac6d5f698f5ddb748710</id>
<content type='text'>
</content>
</entry>
<entry>
<title>45115: vcs_info examples: Make the quilt-patch-dir example friendlier.</title>
<updated>2019-12-22T03:21:01Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>danielsh@apache.org</email>
</author>
<published>2019-12-21T15:58:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=41e35185895ba33bf08cf93809bbe5955f81993a'/>
<id>urn:sha1:41e35185895ba33bf08cf93809bbe5955f81993a</id>
<content type='text'>
- Document that no code at all is necessary for Pareto correctness

- Remove a recommendation to rely on implementation details (${rrn});
  instead, rely only on ${context}, which is a documented API.
</content>
</entry>
<entry>
<title>45116: vcs_info examples: Add an example of showing Git environment variables.</title>
<updated>2019-12-22T03:21:00Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>danielsh@apache.org</email>
</author>
<published>2019-12-21T15:58:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=fec98a13fdb28a5b8ceced9630516ef9e7f25694'/>
<id>urn:sha1:fec98a13fdb28a5b8ceced9630516ef9e7f25694</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: vcs_info: Add an example of using $functions to find hooks by name.</title>
<updated>2019-12-02T01:54:24Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>danielsh@apache.org</email>
</author>
<published>2019-12-02T01:54:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=27a64a16fb5407c64ff190f2af5182797ac048a8'/>
<id>urn:sha1:27a64a16fb5407c64ff190f2af5182797ac048a8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>42826: remove link to now-spam website</title>
<updated>2018-06-03T22:39:26Z</updated>
<author>
<name>Eitan Adler</name>
<email>lists@eitanadler.com</email>
</author>
<published>2018-05-26T07:15:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d63ae0acc9ee0ad861c56e8eefbccf1d039292b0'/>
<id>urn:sha1:d63ae0acc9ee0ad861c56e8eefbccf1d039292b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>40510: vcs_info: Update the $psvar episode with '%'-unescaping. (Follow-up to 40492.)</title>
<updated>2017-02-09T15:24:05Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2017-02-07T08:57:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e007cd9f8853a69a2e313e65a1d04d4e05120243'/>
<id>urn:sha1:e007cd9f8853a69a2e313e65a1d04d4e05120243</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33149: vcs_info examples: fix typo</title>
<updated>2014-09-14T10:02:34Z</updated>
<author>
<name>Marc Finet</name>
<email>m.dreadlock@gmail.com</email>
</author>
<published>2014-09-12T21:30:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6ec8cfdeaa94c6b7a1067a47162644df3a97acb7'/>
<id>urn:sha1:6ec8cfdeaa94c6b7a1067a47162644df3a97acb7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33047: use git to simplify massively source distribution file selection</title>
<updated>2014-08-23T20:01:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2014-08-23T20:01:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cc6e9db29da73bb226b6e53ff4df0f135207d206'/>
<id>urn:sha1:cc6e9db29da73bb226b6e53ff4df0f135207d206</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32528: vcs_info: Add check-for-staged-changes</title>
<updated>2014-04-05T08:56:52Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2014-03-28T11:00:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=eb4c70d0b7856a8ddfeb4ea2d3d83991f5cb82d3'/>
<id>urn:sha1:eb4c70d0b7856a8ddfeb4ea2d3d83991f5cb82d3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Seth House: 30701: Misc/vcs_info-examples: Added an hg hook example to restore the 40-char hash</title>
<updated>2012-09-28T22:09:37Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2012-09-28T22:09:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=966bd9bd820a0710a4129d7bf1901126aca08ec5'/>
<id>urn:sha1:966bd9bd820a0710a4129d7bf1901126aca08ec5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>30366: Misc/vcs_info-examples: Fix outdated quilt examples.</title>
<updated>2012-03-23T16:34:38Z</updated>
<author>
<name>Simon Ruderich</name>
<email>rudi_s@users.sourceforge.net</email>
</author>
<published>2012-03-23T16:34:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d5db14e3c99f6fb11d839bea017c76276f98cb81'/>
<id>urn:sha1:d5db14e3c99f6fb11d839bea017c76276f98cb81</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Suraj N. Kurapati: vcs_info-examples: Mention different ways to handle remote branch names in `vi-git-remotebranch()'.</title>
<updated>2011-10-19T18:14:08Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2011-10-19T18:14:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8ce9c1cbe7c7d1abd0f8b4ddc879b606ce9505a8'/>
<id>urn:sha1:8ce9c1cbe7c7d1abd0f8b4ddc879b606ce9505a8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Valentin Haenel: 29431: Hook example for signaling untracked files in git repositories</title>
<updated>2011-06-01T21:21:04Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2011-06-01T21:21:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0deff4f99aaf2e6389ab441eec04c68a9a27681d'/>
<id>urn:sha1:0deff4f99aaf2e6389ab441eec04c68a9a27681d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Seth House: 28115: Another git example vcs_info hook.</title>
<updated>2010-08-02T21:05:54Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2010-08-02T21:05:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=67e6e030d2ff6a11f341240974e056e8af0d80fe'/>
<id>urn:sha1:67e6e030d2ff6a11f341240974e056e8af0d80fe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Seth House: 28084, 28083: cleanups and new examples.</title>
<updated>2010-07-19T19:21:35Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2010-07-19T19:21:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e03c47752b14c607c5755401fef803963784b32c'/>
<id>urn:sha1:e03c47752b14c607c5755401fef803963784b32c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simon Ruderich: 27953: vcs_info: changed default formats and actionformats.</title>
<updated>2010-05-14T07:58:37Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2010-05-14T07:58:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=88ea63adf28be522d2341c57e4e049ff04aaf7fd'/>
<id>urn:sha1:88ea63adf28be522d2341c57e4e049ff04aaf7fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simon Ruderich: 27954: vcs_info: more minor documentation fixes.</title>
<updated>2010-05-14T07:55:38Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2010-05-14T07:55:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9773e5641889117a5e6b6a9f96b61988792b44ee'/>
<id>urn:sha1:9773e5641889117a5e6b6a9f96b61988792b44ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Seth House, Simon Ruderich and myself: 27948: various vcs_info changes</title>
<updated>2010-05-10T10:46:48Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2010-05-10T10:46:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0501efc54af2d194f952c2968a7aeeb5bac8fdf4'/>
<id>urn:sha1:0501efc54af2d194f952c2968a7aeeb5bac8fdf4</id>
<content type='text'>
Here's a diff-stat:

 Doc/Zsh/contrib.yo                                |  506 ++++++++++++++-------
 Functions/VCS_Info/.distfiles                     |    1 +
 Functions/VCS_Info/Backends/VCS_INFO_detect_hg    |   14 +-
 Functions/VCS_Info/Backends/VCS_INFO_get_data_git |   35 +-
 Functions/VCS_Info/Backends/VCS_INFO_get_data_hg  |  295 +++++++++----
 Functions/VCS_Info/VCS_INFO_formats               |   26 +-
 Functions/VCS_Info/VCS_INFO_hook                  |   10 +-
 Functions/VCS_Info/VCS_INFO_quilt                 |  190 ++++++++
 Functions/VCS_Info/vcs_info                       |   30 +-
 Misc/.distfiles                                   |    1 +
 Misc/vcs_info-examples                            |  496 ++++++++++++++++++++
 11 files changed, 1303 insertions(+), 301 deletions(-)

The major changes are vast improvements for the mercurial (hg) backend
(which was done almost entirely by Seth); improved documentation (mostly
done by Simon and again Seth); quilt support (as an addon and stand
alone, see the manual for details); a number of new hooks and a fair
share of bugfixes.
</content>
</entry>
<entry>
<title>24708: Misc/globtests, Src/pattern.c, Test/D02glob.ztst:</title>
<updated>2008-03-30T22:14:22Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-03-30T22:14:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7389a42d173d7d446e147f92174ddfd5609d0c0f'/>
<id>urn:sha1:7389a42d173d7d446e147f92174ddfd5609d0c0f</id>
<content type='text'>
fix backtracking problem in (#c) pattern
</content>
</entry>
<entry>
<title>add (#cN,M) globbing flag</title>
<updated>2007-07-27T21:51:32Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-07-27T21:51:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a81e5a609e6d73a83c5a55a3f64f760c6fb45b92'/>
<id>urn:sha1:a81e5a609e6d73a83c5a55a3f64f760c6fb45b92</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: force latest version of files from vendor to main branch</title>
<updated>2007-07-03T17:06:04Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-07-03T17:06:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=876fa2c44e0a17b2d10a2547ac1d13687cfed520'/>
<id>urn:sha1:876fa2c44e0a17b2d10a2547ac1d13687cfed520</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22557: turn on multibyte option by default</title>
<updated>2006-07-25T18:10:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-07-25T18:10:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=09bc7ee2b56239020d1ef6bb1f5d7b4ef9f19db1'/>
<id>urn:sha1:09bc7ee2b56239020d1ef6bb1f5d7b4ef9f19db1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>20500: Unmetafy patterns where possible and other minor pattern fixes</title>
<updated>2004-10-18T11:56:14Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-10-18T11:56:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b115ca307adf7ef9dca13f6e7ce40768bc0b2b75'/>
<id>urn:sha1:b115ca307adf7ef9dca13f6e7ce40768bc0b2b75</id>
<content type='text'>
</content>
</entry>
<entry>
<title>19269: 8-bit characters in character classes</title>
<updated>2003-12-03T10:54:36Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2003-12-03T10:54:36Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7d672455bbc8f2142e9fa53db25974d012293b5e'/>
<id>urn:sha1:7d672455bbc8f2142e9fa53db25974d012293b5e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove RCS Id strings.</title>
<updated>2000-05-16T16:22:14Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2000-05-16T16:22:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9f3d6b63a0651189b290a8f235504be1530a2b73'/>
<id>urn:sha1:9f3d6b63a0651189b290a8f235504be1530a2b73</id>
<content type='text'>
</content>
</entry>
<entry>
<title>10547: (#s) and (#e) pattern assertions</title>
<updated>2000-04-06T18:44:01Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2000-04-06T18:44:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d2330ba0554b09a3f942a921acfbbabcf6466bef'/>
<id>urn:sha1:d2330ba0554b09a3f942a921acfbbabcf6466bef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Updated from list as far as 10376</title>
<updated>2000-04-01T20:49:47Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2000-04-01T20:49:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=48525452555a24b9d41748f26b4b77f160f01220'/>
<id>urn:sha1:48525452555a24b9d41748f26b4b77f160f01220</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-11-09T02:36:42Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-11-09T02:36:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ef92e77058c4f88030150aa234072377a237f31f'/>
<id>urn:sha1:ef92e77058c4f88030150aa234072377a237f31f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-10-04T22:57:19Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-10-04T22:57:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d3170c8ee6eb6aa6050d6531536e5e9fba278b57'/>
<id>urn:sha1:d3170c8ee6eb6aa6050d6531536e5e9fba278b57</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Sync up with zsh-3_1_6-pws-1.</title>
<updated>1999-08-12T22:59:04Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-08-12T22:59:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8d1b4b1358db02d6c9426e4bb3553583e11bf112'/>
<id>urn:sha1:8d1b4b1358db02d6c9426e4bb3553583e11bf112</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-07-12T17:02:52Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-07-12T17:02:52Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=59c3d242d546059cad473f1155ad0e350fe45260'/>
<id>urn:sha1:59c3d242d546059cad473f1155ad0e350fe45260</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-04-15T18:05:38Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-04-15T18:05:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e74702b467171dbdafb56dfe354794a212e020d9'/>
<id>urn:sha1:e74702b467171dbdafb56dfe354794a212e020d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-04-15T18:05:35Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-04-15T18:05:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c175751b501a3a4cb40ad4787340a597ea769be4'/>
<id>urn:sha1:c175751b501a3a4cb40ad4787340a597ea769be4</id>
<content type='text'>
</content>
</entry>
</feed>
