about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* unposted (based on Marlon: 49273): add -x to local completionOliver Kiddle2021-08-272-2/+5
|
* 49309: update the strace completion through strace 5.13Oliver Kiddle2021-08-272-43/+82
|
* 49306: fix file completion for the second parameter to losetupOliver Kiddle2021-08-272-2/+6
|
* 49234: add missing options in python completionŠtěpán Němec2021-08-272-2/+10
|
* 49307 with doc update: POSIX_TRAPS fix.Peter Stephenson2021-08-264-6/+20
| | | | | With POSIX_TRAPS set, an ignored signal stays ignored when entering a subshell.
* 49297 (quoting amended): error message in files module.Peter Stephenson2021-08-242-1/+12
| | | | If ENONENT it could be the other argument that doesn't exist, so check.
* github #78: Fix completions in _pandocDCsunset2021-08-242-3/+8
|
* 49268: use an empty string search to find matches for info --index-search= ↵Oliver Kiddle2021-08-162-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.
* 49160: fix quoting for xmllint --pretty completionOliver Kiddle2021-08-162-1/+6
|
* users/26734: docs: read: Notate the parameter name argument as optional.Daniel Shahaf2021-08-142-1/+6
|
* 49269: Fix "[ ! -o ]".Peter Stephenson2021-08-103-2/+8
| | | | | This should detect "-o" as non-empty string; "-a" was alrady working. Update the test.
* github #77: Improve subl completions for Sublime Text v4Stavros Ntentos2021-07-302-0/+7
|
* 49211: _typeset: correctly set return valueJun-ichi Takimoto2021-07-302-14/+19
| | | | do not include '-' in onopts so that 'functions -- <TAB>' works.
* 49029: Prevent shell from sending duplicate signals with MONITORErik Paulson2021-07-232-0/+4
|
* 49182: Turn off correction inside command substition.Peter Stephenson2021-07-233-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.
* 49147: fix completion of linux kernel modulesEric Cook2021-07-192-1/+6
|
* 49166: fix coredump in ${name:offset:length} with ill-formatted lengthJun-ichi Takimoto2021-07-193-9/+15
|
* 49158: remove superfluous function definitionsOliver Kiddle2021-07-1110-253/+223
|
* 49157: fix uses of literal % characters in completion descriptionsOliver Kiddle2021-07-105-8/+13
|
* 49156: make wider use of the convention of square brackets for defaultsOliver Kiddle2021-07-1024-61/+70
|
* 49151: remove commas erroneously included in _arguments exclusion listsOliver Kiddle2021-07-098-25/+31
|
* 49150: consistently use singular form for headings on completion match groupsOliver Kiddle2021-07-0989-230/+233
|
* 49149: add specific values in completion after ssh-keygen -b depending on ↵Oliver Kiddle2021-07-092-3/+11
| | | | the key type
* 49153: cut off .lua extension from module files that occurs when using lmod ↵Max Voit2021-07-082-1/+7
| | | | for module
* 49128 (github #76): vcs_info-examples: optimize +vi-git-untracked()Suraj N. Kurapati2021-07-062-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
* 49102: Ignore dynamic directory name failure if NO_EXECPeter Stephenson2021-06-282-1/+6
|
* 48096: Update Sourceforge links to https://zsh.sourceforge.io/Peter Stephenson2021-06-225-14/+20
|
* 48920: _pgrep: Address issues related to -f completiondana2021-06-142-2/+8
|
* 48920: _pgrep: Clarify -x descriptiondana2021-06-142-1/+5
|
* unposted (cf. 49077): Clarify unset exampleBart Schaefer2021-06-141-1/+1
|
* 49069: literal interpretation of subscripts for unset of array/hash elementsBart Schaefer2021-06-133-4/+19
|
* 49065: remove bad cross-referenceBart Schaefer2021-06-131-3/+2
|
* 48942: Let EDITOR invoked by edit-command-line know it's a zsh scriptAkinori MUSHA2021-06-032-0/+4
|
* 48954: avoid crash in reverse-menu-complete from menuselect without 'menu' ↵Oliver Kiddle2021-06-032-3/+5
| | | | in $compstate[insert]
* 48952: expand octal codes for record separators in perl completionOliver Kiddle2021-06-032-39/+63
|
* 48938: remove vim fold and option markers in completionsOliver Kiddle2021-06-033-34/+34
|
* 48939: update completion of options for rsync 3.2.3Oliver Kiddle2021-06-032-15/+42
|
* 48897: completion updates for DragonFly 6.0 and OpenBSD 6.9Oliver Kiddle2021-05-229-13/+35
|
* 48891: Fix pgrep/pkill -f completionMarlon Richert2021-05-212-2/+12
| | | | Old completion produced false positives & took too much screen space.
* 48864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert2021-05-213-10/+23
| | | | values
* 48601/0005: zmathfuncdef: Fix the workers/48147 return status / 'set -e' bug.Daniel Shahaf2021-05-182-1/+4
| | | | Not tested.
* 48601/0004: docs: return: Give examples of using arithmetic evaluation.Daniel Shahaf2021-05-182-2/+11
|
* 48601/0003: docs: functions -M: Add a subheading and index entries.Daniel Shahaf2021-05-182-0/+9
|
* 48601/0002: docs: functions -M: Document the return status / result ↵Daniel Shahaf2021-05-182-10/+51
| | | | interdependency gotchas (cf. 48147).
* 48601/0001: docs: functions -M: Move an example to be near the specification ↵Daniel Shahaf2021-05-182-7/+9
| | | | of the relevant flag
* 48594 (plus an "F:" line corresponding to the question there): New tests for ↵Daniel Shahaf2021-05-182-0/+41
| | | | functions -t / functions -T
* 48853: improved handling of theme resets when changing prompt themes, ↵Marlon Richert2021-05-163-98/+81
| | | | especially for theme preview
* 48860: remove mention of bugs that have been fixedBart Schaefer2021-05-162-21/+2
|
* 48857: declare "volatile" all globals that may be modified by signal handlersBart Schaefer2021-05-167-24/+32
|
* users/26649: add zstyle for rake targets without descriptionJörg Sommer2021-05-172-1/+6
| | | | | | | `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