about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 52878: Fix ${foo:^bar} where bar is an associative array HEAD masterMikael Magnusson11 days2-0/+8
|
* 52865: Documentation update for 52864Bart Schaefer2024-04-014-17/+23
|
* 52864: Change ${|var|...} to ${{var} ...}, limit local REPLY to ${|...}Bart Schaefer2024-04-015-56/+150
|
* 52781: HIST IGNORE_DUPS + HIST_REDUCE_BLANKS treats whitespace as significantBart Schaefer2024-04-012-0/+13
|
* github #115: completion(ruby): completer opts for irbOKURA Masafumi2024-04-012-0/+5
| | | | | IRB now has `--regexp-completor` and `--type-completor` options added by: https://github.com/ruby/irb/commit/1dec2708c92559487e51c5f3a3030b74a62270e5
* 52859: use _date_formats for fc and complete -m/-M for varedOliver Kiddle2024-04-013-1/+8
|
* 52798: handle comments in ssh configOliver Kiddle2024-03-263-8/+11
|
* 52768: Handle completer filenames with funny characters in themMikael Magnusson2024-03-233-5/+10
| | | | | | For example, a file called _foo;bar will cause this to happen: % hello [press tab]zsh: command not found: _foo zsh: command not found: bar
* 52780: unneccessary returns in hlgroupPeter Stephenson2024-03-212-2/+6
|
* 52783: allow for unset hash elementOliver Kiddle2024-03-202-1/+4
|
* unposted: remove reference to fp_PROG_CC_STDC macro which was removed in 52750Oliver Kiddle2024-03-202-2/+5
|
* 52770: handle newrole in SELinux completionsOliver Kiddle2024-03-182-8/+25
|
* 52769: fix completion of ansible keywords and --step optionOliver Kiddle2024-03-182-7/+10
|
* 52750: remove ansi2knr support for old pre-ansi K&R compilersOliver Kiddle2024-03-1827-239/+144
|
* 52759: ${ ... } trims one trailing newline; "${ ... }" preserves that newline.Bart Schaefer2024-03-175-17/+61
|
* unposted: Note bug that HIST_IGNORE_DUPS mishandles quoted whitespace.Bart Schaefer2024-03-142-1/+6
|
* 52752: typeset -p fixes for local exports and "export -x" / "readonly -r" ↵Bart Schaefer2024-03-143-10/+30
| | | | output.
* 52753: Clarify "nocorrect" when introducing precommand modifiers.Bart Schaefer2024-03-132-6/+9
|
* unposted: update doc for "colors" for workers/47489,50212 (italic and bright)Bart Schaefer2024-03-132-2/+11
|
* unposted: "typeset -p" has problems with special parameters having NULL valuesBart Schaefer2024-03-122-7/+11
|
* 52742: fix bad interactions of "typeset -p" with GLOBAL_EXPORTBart Schaefer2024-03-122-8/+32
|
* 52724: fix .zle.sgr for empty sequencesOliver Kiddle2024-03-132-0/+8
|
* 52725: updated named reference semanticsBart Schaefer2024-03-092-12/+36
|
* 52721: fix metafication and regexp/subject confusion in pcre_match error messageStephane Chazelas2024-03-092-1/+6
|
* 52704: improve zsh_eval_context documentationStephane Chazelas2024-03-082-5/+12
|
* 52692: local typeset of the name of a named reference hides the referenceBart Schaefer2024-03-055-13/+68
|
* 52685: fix typo in the name of bash's BASH_ENV variable.Stephane Chazelas2024-03-052-1/+6
|
* unposted (cf. 52615): use META_NOALLOC for 52591Bart Schaefer2024-03-042-5/+7
|
* unposted (cf. 52617): only scalars can instantiate a declared named referenceBart Schaefer2024-03-042-2/+11
|
* unposted: fix typo in entry attributionBart Schaefer2024-03-041-1/+1
|
* 52659: Fix crash on unset-through-nameref, add regression testBart Schaefer2024-03-043-2/+32
|
* Add missing test case from 52652Bart Schaefer2024-03-041-0/+1
|
* 52650 plus minor fixes: add -u for named references pointing to "upper" scopeBart Schaefer2024-03-0412-28/+145
|
* 52646: extend support for highlight groups to completion explanation strings ↵Oliver Kiddle2024-03-058-17/+50
| | | | and WATCHFMT
* 52641: incarg: add a backward variant and make it repeatablemidchildan2024-03-054-88/+347
|
* 52652: fix obscure bug unsetting the array part of a tied parameter pairBart Schaefer2024-03-022-2/+8
|
* 52635: show file name when test has crashedJun. T2024-03-022-0/+3
|
* 52612: %l replacment of zwarning() does literal string outputBart Schaefer2024-03-024-16/+25
|
* 52645: unset through a nameref keep up-scope parameters declared unsetBart Schaefer2024-03-012-0/+11
| | | | | Othewise unset of a reference to a global wipes out all parameters of the same name.
* 52619 (plus tests): no empty element when appending array to unset scalarBart Schaefer2024-02-283-6/+24
|
* 52622 (tweaked, c.f. 52626): adjust number of columns and drop ↵Oliver Kiddle2024-02-282-6/+12
| | | | right-parenthesis in "kill -L" output
* 52623: add some Solaris signal descriptionsOliver Kiddle2024-02-282-0/+7
|
* 52594: support for POSIX real-time signals with kill and trapOliver Kiddle2024-02-2814-63/+249
| | | | Also add new -L option to kill for a more verbose listing of signals
* Fix META_NOALLOC to META_STATIC in 'bad interpreter' metafyBart Schaefer2024-02-241-2/+2
|
* 52597: fix character counts in context of operator and operand errorsBart Schaefer2024-02-242-7/+21
|
* 52596: metafy interpreter name for error messageBart Schaefer2024-02-242-3/+5
|
* 52591: printf builtin must pass metafied strings to math evaluationStephane Chazelas2024-02-242-4/+11
|
* 52583: extra check for proper scope and existence of readonly specialsBart Schaefer2024-02-233-2/+70
|
* 52552: newer Java supports passing source files directly to javaOliver Kiddle2024-02-222-1/+9
|
* 52559: revise "typeset -p" with respect to local readonly special parametersBart Schaefer2024-02-208-12/+69
| | | | | Update doc and tests to describe handling of global readonly specials and to account for side-effects on zsh/param/private.