about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* unposted: zstyle docs: Fix typo.Daniel Shahaf2020-06-101-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.)
* 46026: Add CLOBBER_EMPTY option.Peter Stephenson2020-06-091-0/+5
|
* users/24909: Don't clean up special file list too early.Peter Stephenson2020-06-081-0/+5
| | | | | When running a function, remove special files used for substitution after the function has run rather than before.
* gitlab !14 (fixup): modutils comp: Fix getting the value of kver from opt_argsDoron Behar2020-06-081-0/+5
|
* 45932: FAQ (3.1): Update ksh compatibility answer for reserved word typeset.Daniel Shahaf2020-06-071-0/+3
|
* 45933: FAQ: Add "Why does my bash script report an error when I run it under ↵Daniel Shahaf2020-06-071-0/+3
| | | | zsh?".
* 45791 (tweaked): FAQ: Explain how to binary search one's dotfilesDaniel Shahaf2020-06-071-0/+3
|
* unposted: FAQ: Update section number in links to the "The future of zsh" ↵Daniel Shahaf2020-06-071-0/+5
| | | | section.
* unposted: Add users/24904 to Etc/BUGS (a process substitution / forking issue).Daniel Shahaf2020-06-061-0/+5
|
* typeset: Fix leaving corrupted entries in paramtabMikael Magnusson2020-06-051-0/+5
|
* 45950: Fix 'make install' in out-of-tree tarball builds.Yasuhiro KIMURA2020-06-031-0/+5
| | | | | See workers/45936 for the failure mode and workers/45943 for an earlier revision of the patch.
* 45940: Add _kdump and _ktrace completers and supporting _ktrace_points typeMatthew Martin2020-06-011-0/+5
|
* 45939: Add _pgids typeMatthew Martin2020-06-011-0/+7
|
* gitlab !14: modutils completion: Fix getting the value of kver from opt_argsDoron Behar2020-06-011-0/+5
| | | | | To get the _value_ of either of the options -S, -k or --set-version, the (i) subscript flag is not needed.
* 45915: fix handling of hyphens in spckword()Bart Schaefer2020-05-301-0/+4
|
* 45934: _subversion: Make 'svnliteadmin' completed same as 'svnadmin'Yasuhiro KIMURA2020-05-281-0/+5
| | | | | In FreeBSD base system svnadmin is installed as 'svnliteadmin'. So make 'svnliteadmin' completed same as 'svnadmin'.
* unposted: zyodl.vim: Highlight the word "note", like ft=help does.Daniel Shahaf2020-05-281-0/+3
|
* unposted: zyodl.vim: Highlight yodl continuation line markerDaniel Shahaf2020-05-281-0/+3
|
* 45923 (with memory leak fixed, cf. 45924): zprof: Don't tally all anonymous ↵Daniel Shahaf2020-05-281-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]
* 45900: Fix issues with escaped newline in $-substitution.Peter Stephenson2020-05-231-0/+5
|
* 45884 (Oliver's, edited by me): Add a few entries.Daniel Shahaf2020-05-211-0/+4
|
* 45862: Add test cases for 45843#1 and 45843#2, adapted from Aaron Esau and pws.Daniel Shahaf2020-05-201-0/+5
|
* unposted: fix date of previous commitEitan Adler2020-05-171-1/+1
|
* unposted: bump config.guess and config.subEitan Adler2020-05-171-0/+5
| | | | | | | | | | | Problem config.guess and config.sub are out of dated reducing cross-platform compatibly. Solution Update them.
* 45831: Add _vi completerMatthew Martin2020-05-171-0/+4
|
* users/24843: zshcompsys(1): Point to the 'format' style from the 'tag-order' ↵Daniel Shahaf2020-05-161-0/+5
| | | | style.
* unposted: Add tests for previous commitMikael Magnusson2020-05-121-2/+2
|
* Support ${name:offset:length} with an empty offsetMikael Magnusson2020-05-121-0/+5
|
* gitlab !13: tar supports zstandard (zstd)noraj2020-05-091-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>
* unposted: libarchive tar can extract zip filesEitan Adler2020-05-071-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.
* unposted: Use alternation patterns rather than brace expansionDaniel Shahaf2020-05-071-0/+6
| | | | (Cf. discussion on GitLab !12.)
* 45764: Add a regression test for 45772. Test by RomanDaniel Shahaf2020-05-051-0/+5
|
* 45772: Restore locale on parameter scope end.Peter Stephenson2020-05-051-0/+5
| | | | Check if relevant parameters changes and if so restore system settings.
* unposted: Fix typo in ChangeLogDaniel Shahaf2020-05-041-1/+1
|
* unposted: add a comment about how to add a new resourceJun-ichi Takimoto2020-05-031-0/+3
|
* 45614: update _dnfJun-ichi Takimoto2020-05-031-0/+5
|
* 45731: _debsnap: New completion function.Daniel Shahaf2020-05-031-0/+3
|
* 45730: _arguments: Add the -0 flag, which makes $opt_args be populated sanely.Daniel Shahaf2020-05-031-0/+5
| | | | Also, write/extend docstrings for sepjoin() and zjoin().
* 45729: internal: Add a second parameter to zlinklist2array(), analogously to ↵Daniel Shahaf2020-05-031-0/+7
| | | | | | hlinklist2array(). Will be used in the next commit.
* unposted: zyodl.vim: Use 'conceal' for some macros that expand to a single ↵Daniel Shahaf2020-05-021-0/+3
| | | | character.
* 45737 (+ docs, and update the test from 45722): zstyle: When determining the ↵Daniel Shahaf2020-05-021-0/+6
| | | | weight (specificity) of a pattern, consider the number of components before anything else, as documented.
* unposted: Revert unintentional move from 45722.Daniel Shahaf2020-05-021-0/+3
|
* 45739: docs: Clarifications about zstyle patterns.Daniel Shahaf2020-05-021-0/+3
| | | | | | - Consistently use the term "pattern" rather than "context" or "style pattern" - Correct statements about order of precedence of patterns - Give the rationale for the "rule of thumb"
* 45722: docs: Change zstyle example to a non-hierarchical oneDaniel Shahaf2020-05-021-0/+3
|
* 45752/0002: _gcc: Complete --output like -o.Daniel Shahaf2020-05-021-0/+3
|
* 45752/0001: _gcc: Add .cpp and .hpp to the ignored extensions list.Daniel Shahaf2020-05-021-0/+5
|
* github #56: typo: Add a single quote that had been missingBenjamin Esham2020-04-271-0/+5
|
* unposted: README: Give the 'zsystem flock' limit in pretty-printed form as well.Daniel Shahaf2020-04-211-0/+5
|
* github #54: Fix dig completion errordavey hathorn2020-04-211-0/+5
|
* unposted: NEWS, README: Document zsh/system changes from workers/45708dana2020-04-201-0/+3
|