about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* 44469: correct error on missing option argumentMartijn Dekker2019-07-011-0/+5
|
* 44446: Fix here document with file descriptor declarator.Peter Stephenson2019-06-241-0/+5
| | | | Add unit test.
* 44443: POSIX allows exporting readonly variablesMartijn Dekker2019-06-231-0/+5
|
* 44435: Handling digita arguments for :h and :t.Peter Stephenson2019-06-201-0/+7
| | | | | | | Pick number of leading or trailing path components to substitute. Active in history, brace parameters, glob qualifiers. Add tests for all three environments.
* fix multiple bugs in countpromptromkatv2019-06-191-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | 1. Height off by one in the presence of meta characters at the end of the line. The following prompt has height 2 but countprompt used to return 3. PROMPT="${(pl.$COLUMNS..-.)}%f"$'\n' You can observe the effects of the bug with esc-x followed by reset-prompt. 2. Width off by one when a line is broken in the middle of a wide character. Assuming COLUMNS=79, the following prompt has width 2 but countprompt used to return 0. PROMPT="${(pl.40..\u3050.)}" zsh -df Press ctrl-r or type ls<tab> to observe the effects of the bug. 3. Width off by 1-7 when a line is broken in the middle of a tab. Assuming COLUMNS=79, the following prompt has width 1 but countprompt used to return 0. PROMPT="${(pl.10..\t.)}" zsh -df Press Ctrl-R or type ls<TAB> to observe the effects of the bug.
* Missed previous ChangeLog entryPeter Stephenson2019-06-191-0/+5
|
* 44387, edited: describe some problems with restricted modeStephane Chazelas2019-06-061-0/+5
|
* 44389: update _iostat and _vmstat for BSDJun-ichi Takimoto2019-06-031-0/+7
| | | | common parts are separated into _bsd_disks and _fbsd_device_types
* 44361: Initialise variables in pattern matching.Peter Stephenson2019-05-281-0/+5
| | | | | These are used recursively and it's a bit obscure if there are case where the value can leak.
* 44364: refer to zsh base manual page in zsh allJim2019-05-281-0/+5
|
* unposted: remove spurious reference to nonexistent completion functionOliver Kiddle2019-05-231-0/+3
|
* 44349: completion option updatesOliver Kiddle2019-05-231-0/+14
|
* 44345: fix wordcode traversal where ! without a following command could ↵Oliver Kiddle2019-05-231-0/+5
| | | | result in a crash
* 44307: allow for atoi() returning a negative numberOliver Kiddle2019-05-201-0/+3
|
* 44308: update Linux modutils completionOliver Kiddle2019-05-201-0/+5
|
* 44284: combination of -T and -p to typeset crashed the shell.Oliver Kiddle2019-05-141-0/+3
|
* 44290: job number exceeding int range and wrapping to a negative number ↵Oliver Kiddle2019-05-141-0/+3
| | | | crashed the shell
* 44291: printf with argument specifier out of range for an int crashed the shellOliver Kiddle2019-05-141-0/+5
|
* 44296: "typeset Q= {X}" crashed the shell.Peter Stephenson2019-05-141-0/+5
|
* 44259: Ensure we can set signals to default even if ignored.Peter Stephenson2019-05-131-0/+5
| | | | | | Previously the shell didn't take account of signals marked as ignored on entry, which was inconsistent with other behaviour.
* unposted: Fix bad encoding in previous Y01 test patchdana2019-05-081-0/+2
|
* 44279: completion updates for Dragonfly 5.4, FreeBSD 12 and OpenBSD 6.5Oliver Kiddle2019-05-091-1/+15
|
* unposted: Add compset tests related to workers/44275Oliver Kiddle2019-05-081-0/+3
| | | | (Provided off-list by Oliver)
* 44275: Fix compset -p/-s multibyte inconsistency and documentationdana2019-05-081-0/+5
|
* 44274: allow finer control of completion match soring with compadd's -o optionOliver Kiddle2019-05-071-0/+16
|
* gitlab !6: Rudimentary rclone completionGautam Iyer2019-05-071-0/+5
|
* gitlab !7: Minor fixes to _lp and _gv completionGautam Iyer2019-05-071-0/+3
|
* gitlab !8: Support completion of installed lua rocks' versionsDoron Behar2019-05-061-0/+3
|
* gitlab !4: Add pandoc completionDoron Behar2019-05-061-0/+3
|
* gitlab !3: Transmission remote completionDoron Behar2019-05-061-0/+3
|
* github #33: Add completion file for myrepos (mr)Aurélien Olivier2019-05-061-3/+6
|
* github #35: fix _arguments spec for gem push completionLaurent Arnoud2019-05-061-0/+5
|
* 44267: sort: Restore option to ignore backslashesdana2019-05-031-0/+5
| | | | Fix regression introduced by workers/41242
* 44271: Fix breaks propagated from until or return.Peter Stephenson2019-05-031-0/+6
| | | | | | If the until or return test caused continuation but there was a pending return, breaks didn't get cancelled causing enclosing scope to skip commands.
* 44251: Completion: Fix various wording issuesdana2019-04-261-0/+5
|
* 44250: Completion: Fix use of -A and -S options to _argumentsdana2019-04-261-0/+6
|
* 44249: Completion: Handle zsh/files built-ins in _mv and _rmdirdana2019-04-261-0/+5
|
* 44234: _ssh: Update for OpenSSH 8.0dana2019-04-261-0/+4
|
* 44284: Mark SIGQUIT as ignore if ignored on entry to shell.Peter Stephenson2019-04-251-0/+5
| | | | | This prevents us from re-enabling it after a fork if it is being ignored.
* 44254: Handle error case in zgetdir().Peter Stephenson2019-04-251-0/+5
| | | | | | | | When retrieving path to current directory by looking for /, ensure we have actually reached / by comparing inode. If the current directory became invalid on some OSes including Linux the parent directory is valid but is the same as the current one.
* unposted: _pick_variant: Use ${(P) ::= rather than evalMatthew Martin2019-04-221-0/+3
|
* 44242: Completion: Use _pick_variant -b to detect builtinsMatthew Martin2019-04-221-0/+7
|
* 43288: fix line-broken promptsdana2019-04-181-0/+4
| | | | Without re-breaking the case where a newline character lands in column 0.
* unposted: NEWS: Document recent feature additionsdana2019-04-121-0/+2
| | | | | Document new features and major changes introduced in 44100, 44135, 44155, 44198, 44200, &al.
* 44198: Add cd_silent option to suppress all cd outputdana2019-04-121-0/+5
|
* 44168 (tweaked to remove change to errflag): Fix interrupt handling of zle -F.Peter Stephenson2019-04-101-0/+6
| | | | | If interrupted by irrelevant interrupt (EINTR only is set), don't set the local error flag, just retry.
* 44214: <(...) substitutions shouldn't grab the terminalEric Freese2019-04-101-0/+3
|
* 44215: Maintain LASTWIDGET across reset-prompt.Roman Perepelitsa2019-04-101-0/+6
| | | | This avoids side effects of asynchronous notifications.
* 44202: Rewrite to use memmove() for possibly overlapping copyPeter Stephenson2019-04-101-0/+5
|
* 44210: add _findmnt and update _lsblkJun-ichi Takimoto2019-04-101-0/+5
|