about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* 49151: remove commas erroneously included in _arguments exclusion listsOliver Kiddle2021-07-091-0/+6
|
* 49150: consistently use singular form for headings on completion match groupsOliver Kiddle2021-07-091-0/+3
|
* 49149: add specific values in completion after ssh-keygen -b depending on ↵Oliver Kiddle2021-07-091-0/+3
| | | | the key type
* 49153: cut off .lua extension from module files that occurs when using lmod ↵Max Voit2021-07-081-0/+6
| | | | for module
* 49128 (github #76): vcs_info-examples: optimize +vi-git-untracked()Suraj N. Kurapati2021-07-061-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Speed up the prompt on large and/or deep working directories by stopping grep(1) as soon as it finds a single match, with `-q`. Also, correct the regexp by adding a ^ anchor and increase its specificity by accounting for the space in Porcelain Format v1. Previously, +vi-git-untracked() waited for grep(1) to find all matches of untracked files, redirecting them away to /dev/null, before finally concluding that untracked files do indeed exist. With this patch, I see 4x speedup on a large Git-enabled $HOME: $ time (git status --porcelain | wc -l) 212 0.01s user 0.02s system 0% cpu 9.021 total $ time (git status --porcelain | grep '??' &>/dev/null) 0.01s user 0.02s system 0% cpu 12.294 total $ time (git status --porcelain | grep -q '^?? ' 2>/dev/null) 0.01s user 0.01s system 0% cpu 3.097 total Note that `-q` for grep(1) is in POSIX (IEEE Std 1003.1-2017): https://pubs.opengroup.org/onlinepubs/9699919799/utilities/grep.html See discussion https://www.zsh.org/mla/workers/2021/msg01354.html
* 49102: Ignore dynamic directory name failure if NO_EXECPeter Stephenson2021-06-281-0/+5
|
* 48096: Update Sourceforge links to https://zsh.sourceforge.io/Peter Stephenson2021-06-221-0/+6
|
* 48920: _pgrep: Address issues related to -f completiondana2021-06-141-0/+3
|
* 48920: _pgrep: Clarify -x descriptiondana2021-06-141-0/+4
|
* 49069: literal interpretation of subscripts for unset of array/hash elementsBart Schaefer2021-06-131-0/+5
|
* 48942: Let EDITOR invoked by edit-command-line know it's a zsh scriptAkinori MUSHA2021-06-031-0/+3
|
* 48954: avoid crash in reverse-menu-complete from menuselect without 'menu' ↵Oliver Kiddle2021-06-031-0/+3
| | | | in $compstate[insert]
* 48952: expand octal codes for record separators in perl completionOliver Kiddle2021-06-031-0/+3
|
* 48938: remove vim fold and option markers in completionsOliver Kiddle2021-06-031-0/+3
|
* 48939: update completion of options for rsync 3.2.3Oliver Kiddle2021-06-031-0/+4
|
* 48897: completion updates for DragonFly 6.0 and OpenBSD 6.9Oliver Kiddle2021-05-221-0/+6
|
* 48891: Fix pgrep/pkill -f completionMarlon Richert2021-05-211-0/+3
| | | | Old completion produced false positives & took too much screen space.
* 48864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert2021-05-211-0/+5
| | | | values
* 48601/0005: zmathfuncdef: Fix the workers/48147 return status / 'set -e' bug.Daniel Shahaf2021-05-181-0/+3
| | | | Not tested.
* 48601/0004: docs: return: Give examples of using arithmetic evaluation.Daniel Shahaf2021-05-181-0/+3
|
* 48601/0003: docs: functions -M: Add a subheading and index entries.Daniel Shahaf2021-05-181-0/+3
|
* 48601/0002: docs: functions -M: Document the return status / result ↵Daniel Shahaf2021-05-181-0/+3
| | | | interdependency gotchas (cf. 48147).
* 48601/0001: docs: functions -M: Move an example to be near the specification ↵Daniel Shahaf2021-05-181-0/+3
| | | | of the relevant flag
* 48594 (plus an "F:" line corresponding to the question there): New tests for ↵Daniel Shahaf2021-05-181-0/+5
| | | | functions -t / functions -T
* 48853: improved handling of theme resets when changing prompt themes, ↵Marlon Richert2021-05-161-0/+4
| | | | especially for theme preview
* 48860: remove mention of bugs that have been fixedBart Schaefer2021-05-161-0/+2
|
* 48857: declare "volatile" all globals that may be modified by signal handlersBart Schaefer2021-05-161-0/+6
|
* users/26649: add zstyle for rake targets without descriptionJörg Sommer2021-05-171-0/+3
| | | | | | | `rake -T` shows only these targets having a description. But it might be useful to see all. Allow this with the zsytle setting: zstyle :completion::complete:rake:argument-rest:targets extended true
* 48783: update ansible completion to 2.10.8Oliver Kiddle2021-05-161-0/+3
|
* 48623: update options in openssh completion to version 8.6Oliver Kiddle2021-05-161-0/+5
|
* _timeout: Fix wrong syntaxMikael Magnusson2021-05-161-0/+4
|
* 33465: use prctl() for "jobs -Z" where availableHan Pingtian2021-05-151-0/+3
| | | | Bart apologizes for waiting 7 years to apply this change.
* 48723: locale-safe recognition of "Inf" and "NaN" constants in mathVincent Lefevre2021-05-151-0/+3
|
* users/26742: break out of surrounding shell loops when exit is called from ↵Peter Stephenson2021-05-151-0/+3
| | | | an exit hook
* users/26736: avoid infinite loop in getbyte from exit hookBart Schaefer2021-05-151-0/+3
|
* 48810: fix potential name clash in test case for autoloadingBart Schaefer2021-05-151-0/+2
|
* 48790: COMPLETE_IN_WORD inside brace-paramBart Schaefer2021-05-151-0/+2
|
* 48710: histed + other zed updatesBart Schaefer2021-05-151-0/+4
|
* 48709: suppress error messages from comptryBart Schaefer2021-05-151-0/+3
|
* 48707: fix keymap handling when zed invokes read-from-minibuffer; update docBart Schaefer2021-05-151-0/+5
|
* 48787: Fix command status after failed ifPeter Stephenson2021-05-061-0/+5
| | | | | | | If "if" had a hard error in the condition, and there was no else clause, the command status was incorrectly cleared to zero. Add test.
* unposted: FAQ: Move section 3.31 to 2.8dana2021-05-031-0/+2
| | | | See 48613
* unposted: docs: Update http:// FAQ links to https://dana2021-05-031-0/+3
| | | | See 48613
* 48551: docs: Add disclaimer about POSIX compliance and emulation of other shellsdana2021-05-031-0/+3
|
* 48614: getopts: Calculate OPTIND according to POSIX_BUILTINSdana2021-05-031-0/+6
|
* 48767: docs: $SECONDS: Clarify what types may be setDaniel Shahaf2021-05-031-0/+5
|
* 48702: _pandoc: don't use cache, multiple extensions of format, etc.Jun-ichi Takimoto2021-04-281-0/+5
|
* 48606 + 48607 + unposted test: zmathfunc: Force arguments to be numbers and ↵Daniel Shahaf2021-04-211-0/+4
| | | | catch errors.
* unposted (cf. 48156): New test.Daniel Shahaf2021-04-211-0/+2
|
* users/26635 (tweaked): vcs_info hg: Compute the branch name correctly when ↵Daniel Shahaf2021-04-211-0/+7
| | | | | | | | get-revision is set and check-for-changes is not Tweak: Simplify an always-true condition. Review-by: Manuel Jacob