about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* 47296 (+ unposted additional tests and comments): 'repeat' loops: Let the ↵Daniel Shahaf2020-08-081-0/+4
| | | | | | repeat count use $?. It's an arithmetic expression.
* 47300: Document the EC_NODUP, EC_DUP, EC_DUPTOK triplet.Daniel Shahaf2020-08-081-0/+5
| | | | All uses reviewed; no functional change.
* unposted: Correct the order of two recent ChangeLog entriesDaniel Shahaf2020-08-081-2/+2
|
* unposted: fix syntax errors in recently added completersMikael Magnusson2020-08-081-0/+6
|
* 46280: compinit: add -w to explain why compdump runsMikael Magnusson2020-08-051-0/+6
|
* unposted: Fix the format of recent ChangeLog entries.Roman Perepelitsa2020-07-301-4/+6
| | | | | Add the list of changed files to the last three ChangeLog entries by roman.perepelitsa@gmail.com.
* unposted: Add missing entries to ChangeLog.Roman Perepelitsa2020-07-301-0/+13
| | | | | The last 3 commits from <roman.perepelitsa@gmail.com> are missing from ChangeLog. This commit add the missing entries.
* 46244 (cont.): Flesh out the TODO from the previous commit.Daniel Shahaf2020-07-141-0/+3
|
* 46244: Start to introduce a release managers keyring.Daniel Shahaf2020-07-141-0/+5
|
* github #61: _parameters: Don't leak the variable $ioxiedi2020-07-141-0/+5
|
* 46240: Make the expansion of manref()() in ztexi.yo match its expansion in ↵Daniel Shahaf2020-07-131-0/+7
| | | | | | | | | | | | | | | | | | zman.yo. The difference was mostly harmless in the common case "(see manref(foo)(42))", which expanded to "(see man page foo(42))" under ztexi.yo, but in other contexts the ztexi.yo expansion was was nonsensical; for example: "the BSD manref(echo)(1) command" "the string returned by the manref(getlogin)(3) system call" "advisory file locking (via the manref(fcntl)(2) system call)" "this is the exact opposite from manref(ls)(1)," While there, copyedit some uses of manref()().
* 46183: New XFail test: external command with =(...) on LHS of pipeline ↵Daniel Shahaf2020-07-121-0/+3
| | | | cleans up its tempfiles.
* unposted (cf. GitHub #11): vcs_info hg: docs: Change an example to not use a ↵Daniel Shahaf2020-07-121-0/+4
| | | | | | | | | hex dump incantation that may replace some bytes' values with asterisks. 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.
* users/24985: Clarify documentation of the ${(n)} and ${(-)} parameter ↵Daniel Shahaf2020-07-121-0/+4
| | | | expansion flags, and add a forward compatibility hatch to the latter.
* 46204: Fix new test case for the theoretical case of having more than 100 ↵Daniel Shahaf2020-07-121-0/+4
| | | | files in the root directory.
* unposted: .editorconfig: For Makefiles, make the indent size equal to tab width.Daniel Shahaf2020-07-121-0/+5
|
* 46152: zsh/system: Re-allow '0' timeout in zsystem flockCedric Ware2020-07-111-0/+5
|
* 46215: make the test for RM_STAR_SILENT work on wider systemsJun-ichi Takimoto2020-07-091-0/+6
|
* 46216: update for ansible 2.9Oliver Kiddle2020-07-081-0/+2
|
* 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
|