summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2020-06-2346079: Ignore double quotes in math expressions.Peter Stephenson1-0/+5
Treat as white space. This is required for compatibility and previously had no use in zsh as it generated an error.
2020-06-2246091: Add code to Mercurial VCS backend to show topic if there is any.Manuel Jacob1-0/+6
"Topics" is an experimental concept in Mercurial that augments the current branching concept (called "named branches"). For more information, see the not always up-to-date Mercurial Wiki page https://www.mercurial-scm.org/wiki/TopicPlan.
2020-06-1946044 (tweaked per Matthew): _units: Correct the path to the units data file ↵Daniel Shahaf1-0/+6
on Debian with units 2.00 and newer and on FreeBSD.
2020-06-1846067: Add a unit test for workers/46060.Daniel Shahaf1-0/+5
2020-06-1846060: Fix spurious actions on exit status 130 or 131.Peter Stephenson1-0/+5
Ensure process has taken a signal before looking for SIGINT or SIGQUIT.
2020-06-1745982: _zfs: add space propertyFrederick Zhang1-0/+5
2020-06-17unposted: internal: ztst.vim: Recognize empty "F:" line as well, as the test ↵Daniel Shahaf1-0/+5
harness does.
2020-06-1746049: docs: Correct the sense of the single-letter abstract of the ↵Miroslav Koškár1-0/+5
GLOBAL_RCS option (-d)
2020-06-11gitlab !12: completion for mat & mat2Jan Máslo1-0/+3
2020-06-1146036: fix colouring in prompt completionOliver Kiddle1-0/+3
2020-06-11users/24892: fix local declaration with recursive-files style and complete ↵Oliver Kiddle1-0/+6
it for zstyle
2020-06-10unposted: zstyle docs: Fix typo.Daniel Shahaf1-0/+4
This manifested as a trailing non-underlined ".RE" in the rendered man page. (I guess that was a man page directive, but I'm not sure how the extraneous closing parenthesis caused it to be rendered in the output.)
2020-06-0946026: Add CLOBBER_EMPTY option.Peter Stephenson1-0/+5
2020-06-08users/24909: Don't clean up special file list too early.Peter Stephenson1-0/+5
When running a function, remove special files used for substitution after the function has run rather than before.
2020-06-08gitlab !14 (fixup): modutils comp: Fix getting the value of kver from opt_argsDoron Behar1-0/+5
2020-06-0745932: FAQ (3.1): Update ksh compatibility answer for reserved word typeset.Daniel Shahaf1-0/+3
2020-06-0745933: FAQ: Add "Why does my bash script report an error when I run it under ↵Daniel Shahaf1-0/+3
zsh?".
2020-06-0745791 (tweaked): FAQ: Explain how to binary search one's dotfilesDaniel Shahaf1-0/+3
2020-06-07unposted: FAQ: Update section number in links to the "The future of zsh" ↵Daniel Shahaf1-0/+5
section.
2020-06-06unposted: Add users/24904 to Etc/BUGS (a process substitution / forking issue).Daniel Shahaf1-0/+5
2020-06-05typeset: Fix leaving corrupted entries in paramtabMikael Magnusson1-0/+5
2020-06-0345950: Fix 'make install' in out-of-tree tarball builds.Yasuhiro KIMURA1-0/+5
See workers/45936 for the failure mode and workers/45943 for an earlier revision of the patch.
2020-06-0145940: Add _kdump and _ktrace completers and supporting _ktrace_points typeMatthew Martin1-0/+5
2020-06-0145939: Add _pgids typeMatthew Martin1-0/+7
2020-06-01gitlab !14: modutils completion: Fix getting the value of kver from opt_argsDoron Behar1-0/+5
To get the _value_ of either of the options -S, -k or --set-version, the (i) subscript flag is not needed.
2020-05-3045915: fix handling of hyphens in spckword()Bart Schaefer1-0/+4
2020-05-2845934: _subversion: Make 'svnliteadmin' completed same as 'svnadmin'Yasuhiro KIMURA1-0/+5
In FreeBSD base system svnadmin is installed as 'svnliteadmin'. So make 'svnliteadmin' completed same as 'svnadmin'.
2020-05-28unposted: zyodl.vim: Highlight the word "note", like ft=help does.Daniel Shahaf1-0/+3
2020-05-28unposted: zyodl.vim: Highlight yodl continuation line markerDaniel Shahaf1-0/+3
2020-05-2845923 (with memory leak fixed, cf. 45924): zprof: Don't tally all anonymous ↵Daniel Shahaf1-0/+6
functions as though they were a single function named "(anon)". Before: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 2 0.08 0.04 100.00% 0.08 0.04 100.00% (anon) After: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 1 0.04 0.04 50.45% 0.04 0.04 50.45% (anon) [:3] 2) 1 0.04 0.04 49.55% 0.04 0.04 49.55% (anon) [:2]
2020-05-2345900: Fix issues with escaped newline in $-substitution.Peter Stephenson1-0/+5
2020-05-2145884 (Oliver's, edited by me): Add a few entries.Daniel Shahaf1-0/+4
2020-05-2045862: Add test cases for 45843#1 and 45843#2, adapted from Aaron Esau and pws.Daniel Shahaf1-0/+5
2020-05-17unposted: fix date of previous commitEitan Adler1-1/+1
2020-05-17unposted: bump config.guess and config.subEitan Adler1-0/+5
Problem config.guess and config.sub are out of dated reducing cross-platform compatibly. Solution Update them.
2020-05-1745831: Add _vi completerMatthew Martin1-0/+4
2020-05-16users/24843: zshcompsys(1): Point to the 'format' style from the 'tag-order' ↵Daniel Shahaf1-0/+5
style.
2020-05-12unposted: Add tests for previous commitMikael Magnusson1-2/+2
2020-05-12Support ${name:offset:length} with an empty offsetMikael Magnusson1-0/+5
2020-05-09gitlab !13: tar supports zstandard (zstd)noraj1-0/+6
Problem Variants of tar based on libarchive or GNU tar can support extracting zstd based files. Solution Add this type of to _tar_archive. From noraj <gitlab@mg.gitlab.com>
2020-05-07unposted: libarchive tar can extract zip filesEitan Adler1-0/+4
Problem Variants of tar based on libarchive can extract zip files but `tar xf <tab>` does not complete this type of file. Solution Add this type of to _tar_archive.
2020-05-07unposted: Use alternation patterns rather than brace expansionDaniel Shahaf1-0/+6
(Cf. discussion on GitLab !12.)
2020-05-0545764: Add a regression test for 45772. Test by RomanDaniel Shahaf1-0/+5
2020-05-0545772: Restore locale on parameter scope end.Peter Stephenson1-0/+5
Check if relevant parameters changes and if so restore system settings.
2020-05-04unposted: Fix typo in ChangeLogDaniel Shahaf1-1/+1
2020-05-03unposted: add a comment about how to add a new resourceJun-ichi Takimoto1-0/+3
2020-05-0345614: update _dnfJun-ichi Takimoto1-0/+5
2020-05-0345731: _debsnap: New completion function.Daniel Shahaf1-0/+3
2020-05-0345730: _arguments: Add the -0 flag, which makes $opt_args be populated sanely.Daniel Shahaf1-0/+5
Also, write/extend docstrings for sepjoin() and zjoin().
2020-05-0345729: internal: Add a second parameter to zlinklist2array(), analogously to ↵Daniel Shahaf1-0/+7
hlinklist2array(). Will be used in the next commit.