Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-08-29 | 49316: add (-.) glob qualifier to globs where only files are applicable | Oliver Kiddle | 6 | -17/+20 | |
2021-08-29 | 49315: list units in brackets at the end of group descriptions | Oliver Kiddle | 11 | -32/+37 | |
2021-08-28 | users/26982, subset not already integrated: use standard #include format | Peter A. Castro | 2 | -2/+8 | |
2021-08-27 | 49290: Replace stdio for buffered shell input. | Peter Stephenson | 3 | -19/+123 | |
The previous method allowed memory management to interact with signal handlers, causing occasional crashes on some system. Instead, use a simple pre-allocated buffer and raw system calls. | |||||
2021-08-27 | 49272: Set $COLUMNS in _call_program to ensure cached command output is ↵ | Marlon Richert | 2 | -0/+5 | |
sufficiently wide | |||||
2021-08-27 | unposted (based on Marlon: 49273): add -x to local completion | Oliver Kiddle | 2 | -2/+5 | |
2021-08-27 | 49309: update the strace completion through strace 5.13 | Oliver Kiddle | 2 | -43/+82 | |
2021-08-27 | 49306: fix file completion for the second parameter to losetup | Oliver Kiddle | 2 | -2/+6 | |
2021-08-27 | 49234: add missing options in python completion | Štěpán Němec | 2 | -2/+10 | |
2021-08-26 | 49307 with doc update: POSIX_TRAPS fix. | Peter Stephenson | 4 | -6/+20 | |
With POSIX_TRAPS set, an ignored signal stays ignored when entering a subshell. | |||||
2021-08-24 | 49297 (quoting amended): error message in files module. | Peter Stephenson | 2 | -1/+12 | |
If ENONENT it could be the other argument that doesn't exist, so check. | |||||
2021-08-24 | github #78: Fix completions in _pandoc | DCsunset | 2 | -3/+8 | |
2021-08-16 | 49268: use an empty string search to find matches for info --index-search= ↵ | Oliver Kiddle | 2 | -2/+13 | |
completion Also include info output to the right of " -- " for further info node completion matches and fix quoting of a blank argument to _call_program. | |||||
2021-08-16 | 49160: fix quoting for xmllint --pretty completion | Oliver Kiddle | 2 | -1/+6 | |
2021-08-14 | users/26734: docs: read: Notate the parameter name argument as optional. | Daniel Shahaf | 2 | -1/+6 | |
2021-08-10 | 49269: Fix "[ ! -o ]". | Peter Stephenson | 3 | -2/+8 | |
This should detect "-o" as non-empty string; "-a" was alrady working. Update the test. | |||||
2021-07-30 | github #77: Improve subl completions for Sublime Text v4 | Stavros Ntentos | 2 | -0/+7 | |
2021-07-30 | 49211: _typeset: correctly set return value | Jun-ichi Takimoto | 2 | -14/+19 | |
do not include '-' in onopts so that 'functions -- <TAB>' works. | |||||
2021-07-23 | 49029: Prevent shell from sending duplicate signals with MONITOR | Erik Paulson | 2 | -0/+4 | |
2021-07-23 | 49182: Turn off correction inside command substition. | Peter Stephenson | 3 | -0/+13 | |
In "A=$(PWD)" we dont't have the information to correct at the level of the PWD subcommand, so don't try to do it as this causes a crash. | |||||
2021-07-19 | 49147: fix completion of linux kernel modules | Eric Cook | 2 | -1/+6 | |
2021-07-19 | 49166: fix coredump in ${name:offset:length} with ill-formatted length | Jun-ichi Takimoto | 3 | -9/+15 | |
2021-07-11 | 49158: remove superfluous function definitions | Oliver Kiddle | 10 | -253/+223 | |
2021-07-10 | 49157: fix uses of literal % characters in completion descriptions | Oliver Kiddle | 5 | -8/+13 | |
2021-07-10 | 49156: make wider use of the convention of square brackets for defaults | Oliver Kiddle | 24 | -61/+70 | |
2021-07-09 | 49151: remove commas erroneously included in _arguments exclusion lists | Oliver Kiddle | 8 | -25/+31 | |
2021-07-09 | 49150: consistently use singular form for headings on completion match groups | Oliver Kiddle | 89 | -230/+233 | |
2021-07-09 | 49149: add specific values in completion after ssh-keygen -b depending on ↵ | Oliver Kiddle | 2 | -3/+11 | |
the key type | |||||
2021-07-08 | 49153: cut off .lua extension from module files that occurs when using lmod ↵ | Max Voit | 2 | -1/+7 | |
for module | |||||
2021-07-06 | 49128 (github #76): vcs_info-examples: optimize +vi-git-untracked() | Suraj N. Kurapati | 2 | -1/+6 | |
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 | |||||
2021-06-28 | 49102: Ignore dynamic directory name failure if NO_EXEC | Peter Stephenson | 2 | -1/+6 | |
2021-06-22 | 48096: Update Sourceforge links to https://zsh.sourceforge.io/ | Peter Stephenson | 5 | -14/+20 | |
2021-06-14 | 48920: _pgrep: Address issues related to -f completion | dana | 2 | -2/+8 | |
2021-06-14 | 48920: _pgrep: Clarify -x description | dana | 2 | -1/+5 | |
2021-06-14 | unposted (cf. 49077): Clarify unset example | Bart Schaefer | 1 | -1/+1 | |
2021-06-13 | 49069: literal interpretation of subscripts for unset of array/hash elements | Bart Schaefer | 3 | -4/+19 | |
2021-06-13 | 49065: remove bad cross-reference | Bart Schaefer | 1 | -3/+2 | |
2021-06-03 | 48942: Let EDITOR invoked by edit-command-line know it's a zsh script | Akinori MUSHA | 2 | -0/+4 | |
2021-06-03 | 48954: avoid crash in reverse-menu-complete from menuselect without 'menu' ↵ | Oliver Kiddle | 2 | -3/+5 | |
in $compstate[insert] | |||||
2021-06-03 | 48952: expand octal codes for record separators in perl completion | Oliver Kiddle | 2 | -39/+63 | |
2021-06-03 | 48938: remove vim fold and option markers in completions | Oliver Kiddle | 3 | -34/+34 | |
2021-06-03 | 48939: update completion of options for rsync 3.2.3 | Oliver Kiddle | 2 | -15/+42 | |
2021-05-22 | 48897: completion updates for DragonFly 6.0 and OpenBSD 6.9 | Oliver Kiddle | 9 | -13/+35 | |
2021-05-21 | 48891: Fix pgrep/pkill -f completion | Marlon Richert | 2 | -2/+12 | |
Old completion produced false positives & took too much screen space. | |||||
2021-05-21 | 48864: Improve extra-verbose completion display strings for array parameter ↵ | Marlon Richert | 3 | -10/+23 | |
values | |||||
2021-05-18 | 48601/0005: zmathfuncdef: Fix the workers/48147 return status / 'set -e' bug. | Daniel Shahaf | 2 | -1/+4 | |
Not tested. | |||||
2021-05-18 | 48601/0004: docs: return: Give examples of using arithmetic evaluation. | Daniel Shahaf | 2 | -2/+11 | |
2021-05-18 | 48601/0003: docs: functions -M: Add a subheading and index entries. | Daniel Shahaf | 2 | -0/+9 | |
2021-05-18 | 48601/0002: docs: functions -M: Document the return status / result ↵ | Daniel Shahaf | 2 | -10/+51 | |
interdependency gotchas (cf. 48147). | |||||
2021-05-18 | 48601/0001: docs: functions -M: Move an example to be near the specification ↵ | Daniel Shahaf | 2 | -7/+9 | |
of the relevant flag |