about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* 46217: update options for tmux 3.1Oliver Kiddle2020-07-081-0/+2
|
* github #60: Fix completion for a zfs dataset containing spacesMathias Fredriksson2020-07-081-0/+3
|
* gitlab !15: modutils completion: Fix FHS assumptionDoron Behar2020-07-081-0/+3
| | | | | | | Remove calls to programs from /sbin/ with _call_program and to avoid the system complies to the FHS. Support modules completion for NixOS and Guix which store their kernel modules not at /lib/modules.
* 46201: add guidelines for caching and use of imperative mood in descriptionsOliver Kiddle2020-07-081-0/+3
|
* 46195: use showrgb command to get colours if it is availableOliver Kiddle2020-07-081-0/+3
|
* github #50: Complete hosts in "Match" directiveSATOH Fumiyasu2020-07-081-0/+3
|
* github #53: Allow specifying directory name for _remote_filesJames Pike2020-07-081-0/+5
|
* 46189: Ignore exit status of final zpty_flush in comptestevalBart Schaefer2020-07-071-0/+4
|
* github #58: docs: Note that the zsh/regex syntax is platform-dependent.Nuri Jung2020-07-071-0/+5
|
* 46194: docs: metafaq: Remove spurious closing bracketPete Moore2020-07-061-0/+5
|
* 46175/0003: Fix the RM_STAR_SILENT bug from the parent commit.Daniel Shahaf2020-07-051-0/+3
|
* 46175/0002: Add a regression test for 46169: the RM_STAR_SILENT logic ↵Daniel Shahaf2020-07-051-0/+4
| | | | | | processes the current directory rather than the root directory. The bug will be fixed in the next commit.
* 46175/0001: Add a unit test for the RM_STAR_SILENT option.Daniel Shahaf2020-07-051-0/+3
|
* 46174/0002: test harness: Restore indentation after the previous commit. No ↵Daniel Shahaf2020-07-051-0/+3
| | | | functional change.
* 46174/0001: test harness: Plug a symlink attackDaniel Shahaf2020-07-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | The test harness created tempfiles with a predictable names and sourced them without verifying they had been created by itself. This opened anyone who ran the test suite to a symlink attacks from other local users on the build machine. Fix this by creating the file whilst NO_CLOBBER and ERR_EXIT are both in scope, to ensure that we'll abort unless the file really was created as expected. Put the existing rm(1) call in a try/always block to help it be unlinked on test failures, thus reducing the chances of the NO_CLOBBER check triggering on tempfiles created by earlier test suite runs. I had first tried to fix this by using the . () { ... } =(:) . idiom, but couldn't get that to work: it broke the %prep code of X03 with ZTST_verbose unset (its default value) but not with ZTST_verbose=3. (I tried to set the latter to debug zpty_flush.) While there, add a needed-in-principle-but-noop-in-this-specific-case (q). Indentation will be restored in the next commit.
* 46168: Update $PWD and call chpwd hook after normalizing pathMatthew Martin2020-07-031-0/+5
|
* unposted (cf. users/24972, users/24978): Use an ASCII hyphen/minus rather ↵Daniel Shahaf2020-07-031-0/+5
| | | | than a dash.
* users/24971: ${(-)var} sorts on signed integersPeter Stephenson2020-07-031-0/+6
|
* 46097: Fix "assignment to invalid subscript range" error in _rm.zsugabubus2020-06-281-0/+5
| | | | See 46090 for details.
* 46132: docs: Use an itemized list in the documentation of the *(o) glob ↵Daniel Shahaf2020-06-281-0/+3
| | | | | | qualifier. This should be easier to read, both as a tutorial and as a reference.
* 46131: _git-config: Partly fix a bug whereby a 'foo.ba<TAB>' wouldn't be ↵Daniel Shahaf2020-06-281-0/+4
| | | | | | | | | completed to 'foo.bar.baz'. Now it properly gets completed, but in the case of gpg.openpgp.program, the description would be shown as "unknown option name", that being the description of gpg.*.program via `git help -c`, which shadows the more description of gpg.openpgp.program in $git_options.
* 46128: _git: Complete more options and diff/merge tools.Daniel Shahaf2020-06-281-0/+3
|
* 46129: _git-config: Fix a bug where a second trailing dot would be ↵Daniel Shahaf2020-06-281-0/+3
| | | | incorrectly offered.
* 46130: _git-config: Complete some more options.Daniel Shahaf2020-06-281-0/+5
|
* 46140: _git: Fix insufficiently quoted patternMiroslav Koškár2020-06-271-0/+3
|
* 46139: _git: Remove hanging whitespacesMiroslav Koškár2020-06-271-0/+4
|
* unposted (after 46068): Fix a compiler warning.Daniel Shahaf2020-06-271-0/+3
| | | | | | | The warning was: . warning: passing 'const char *' to parameter of type 'void *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
* 46072 + 46136: Add the 'zle $widget -f nolast' syntax, to improve ↵Daniel Shahaf2020-06-271-0/+6
| | | | | | add-zle-hook-widget support for multiple hook functions. See workers/46004 for the use-case.
* users/24959/0002: Update aliases documentation for the addition of the ↵Daniel Shahaf2020-06-271-0/+3
| | | | ALIAS_FUNC_DEF option.
* users/24959/0001: Extend documentation of global aliases.Daniel Shahaf2020-06-271-0/+5
|
* unposted: docs: Fix some markup and typos.Daniel Shahaf2020-06-261-0/+6
|
* 46100: Fix =subst before =(subst)Peter Stephenson2020-06-261-0/+5
| | | | | | This occurs with SH file expansion ordering. Add test.
* unposted c.f. 46034: workaround incompatibility with sh_file_expansion optionOliver Kiddle2020-06-261-0/+3
|
* 46106: new usbconfig completionOliver Kiddle2020-06-261-0/+4
|
* 46075: drelo: prefer ip on linux for finding network interfacesdrelo2020-06-261-0/+3
|
* 45895: ignore deduplication patterns in _sequenceoxiedi2020-06-261-0/+5
|
* 46068 (tweaked) (was: github #57): region_highlight: Add memo= support.Daniel Shahaf2020-06-251-0/+5
| | | | | | | | | | | | | | | | This is useful when multiple plugins add region_highlight entries and subsequently want to remove only their own entries. Without this functionality, recognizing one's region_highlight entries is not trivial because the 'start' and 'end' offsets are modified by editing of $BUFFER and the highlight specification may not be unique or distinctive. The tweaks are as follows: - Change zfree() to zsfree() per workers/46070. - Remove the mem.c hunk, as it changed the signature of only one out of two alternative definitions of zsfree(). (The definition that hunk touched is the one that's not used by default.)
* 46102: test harness: Make the XPass message distinct from the Fail message.Daniel Shahaf2020-06-251-0/+5
| | | | | | | | | | | | | | | | | The new output is: ./Test/B02typeset.ztst: starting. Test ./Test/B02typeset.ztst was expected to fail, but passed. Was testing: this is the description that's after the colon on in the ztst file ./Test/B02typeset.ztst: test XPassed. ************************************** 0 successful test scripts, 1 failure, 0 skipped ************************************** make[1]: *** [Makefile:190: check] Error 1 make: *** [Makefile:263: check] Error 2 The new function is deliberately very similar to ZTST_testfailed() just above it.
* 46079: Ignore double quotes in math expressions.Peter Stephenson2020-06-231-0/+5
| | | | | | | Treat as white space. This is required for compatibility and previously had no use in zsh as it generated an error.
* 46091: Add code to Mercurial VCS backend to show topic if there is any.Manuel Jacob2020-06-221-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.
* 46044 (tweaked per Matthew): _units: Correct the path to the units data file ↵Daniel Shahaf2020-06-191-0/+6
| | | | on Debian with units 2.00 and newer and on FreeBSD.
* 46067: Add a unit test for workers/46060.Daniel Shahaf2020-06-181-0/+5
|
* 46060: Fix spurious actions on exit status 130 or 131.Peter Stephenson2020-06-181-0/+5
| | | | Ensure process has taken a signal before looking for SIGINT or SIGQUIT.
* 45982: _zfs: add space propertyFrederick Zhang2020-06-171-0/+5
|
* unposted: internal: ztst.vim: Recognize empty "F:" line as well, as the test ↵Daniel Shahaf2020-06-171-0/+5
| | | | harness does.
* 46049: docs: Correct the sense of the single-letter abstract of the ↵Miroslav Koškár2020-06-171-0/+5
| | | | GLOBAL_RCS option (-d)
* gitlab !12: completion for mat & mat2Jan Máslo2020-06-111-0/+3
|
* 46036: fix colouring in prompt completionOliver Kiddle2020-06-111-0/+3
|
* users/24892: fix local declaration with recursive-files style and complete ↵Oliver Kiddle2020-06-111-0/+6
| | | | it for zstyle
* 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.)