about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 51539: don't complete diff options to git blameOliver Kiddle2023-03-112-14/+33
|
* 51534: update for recent changes in zsh.hBart Schaefer2023-03-072-4/+13
|
* 51511: More discussion of unsupported ksh featuresBart Schaefer2023-03-062-17/+56
|
* 51511: Documentation for namespacesBart Schaefer2023-03-063-1/+30
|
* 51510: Skip namespaces in "set"/"typeset" output, add tests, fix bugBart Schaefer2023-03-066-8/+130
|
* 51509 (+ fix typo): Add ${(!)name} for the referred-to name of a named referenceBart Schaefer2023-03-064-9/+41
| | | | Extend ${!name} in ksh emulation for same
* 51524: dependency on zsh/zle for linkageBart Schaefer2023-03-062-0/+6
|
* 51486: clarify module development sectionBart Schaefer2023-03-052-7/+12
|
* 51485: module for several ksh93 features, mostly enabled only in ksh emulation.Bart Schaefer2023-03-056-2/+490
|
* 51484: Extend named reference handling for special parameters, improve doc.Bart Schaefer2023-03-053-44/+69
|
* 51483: Enable assignment and expansion of parameters with ksh-like namespace ↵Bart Schaefer2023-03-059-19/+45
| | | | prefixes.
* unposted: fix memory leak flagged by coverityBart Schaefer2023-03-052-0/+5
|
* 51491: Check should use zlemetacs instead of zlecsMikael Magnusson2023-02-282-1/+6
| | | | | | Coverity noticed that this first branch of the if statement has "meta" added to all the variable names except this zlecs at the end, so change it to match.
* 51464: utility to interpret zsh.h constantsBart Schaefer2023-02-262-0/+603
|
* Fix typoBart Schaefer2023-02-262-1/+3
|
* 51460: avoid crash on bad parameter autofeatureBart Schaefer2023-02-262-6/+15
|
* 51473: Update cal/ncal completionShohei YOSHIDA2023-02-242-13/+119
| | | | | - Support util-linux and bsdmainutils cal on Linux - Support each BSD's implementations
* 51470 (tweaked, c.f. 51476): Separate cdpath elements in path-directories ↵Sebastian Stark2023-02-242-2/+13
| | | | completion
* 51474: make -e and --vault-id options repeatable and update for new options ↵Oliver Kiddle2023-02-242-25/+69
| | | | to ansible 2.13.2
* Fix access to autoloaded parameter.Peter Stephenson2023-02-212-1/+5
| | | | Namerefef resolution needs to happen on the parameter after autoload.
* 51431: "typeset -p" shouldn't change parameter flagsBart Schaefer2023-02-202-13/+37
|
* 51456: complete only modified files with git add -uOliver Kiddle2023-02-192-8/+17
| | | | | Also fix a typo, add a missing =, add a prompt for function name after git blame -L and git worktree --force has gained a short -f form.
* 51455, 51461: new completion for the OpenLDAP client tools including a ↵Oliver Kiddle2023-02-195-2/+349
| | | | helper function for LDAP search filters
* 51447: silence compiler maybe-uninitialized warning by combining a couple of ↵Oliver Kiddle2023-02-172-12/+16
| | | | variables
* 51391: complete remote branch names respecting --delete for git pushØystein Walle2023-02-172-1/+14
|
* 51437: Fix incorrectly-passed test case, masked by unrelated bug.Bart Schaefer2023-02-143-4/+29
| | | | | | A bug with zmodload when unloading/reloading a static module caused the state of the shell options to change during K01 test. Worked around it. Also changed warnnestedvar messages to look more like other such.
* 51424: $(<...) shouldn't try to open a file with NO_EXECPeter Stephenson2023-02-143-0/+11
|
* 51430: Misc. problems with typeset and $parametersBart Schaefer2023-02-135-8/+33
| | | | | | * Fix and test for regression of assignment when using typeset command * Fix output of typeset +m and $parameters[ref] * Prevent segfault in typeset
* 51417: Check subscripts in named reference values more rigorously.Bart Schaefer2023-02-123-3/+15
|
* 51403: Tests and documentation for 51402, clean up some other tests.Bart Schaefer2023-02-127-18/+218
|
* 51402: Some ksh/bash features, additional sanity checkingBart Schaefer2023-02-125-27/+129
| | | | | | | | | | | | * Add "unset -n" * Allow and enforce "typeset -n -r" for read-only references * "can't change type via subscript reference" error * Better checking for self-referential declarations/assignments * Ksh-style "foo=bar; typeset -n foo" creates foo=bar reference * Support "typeset -n ref; for ref in ..." * Subscripted references use NO_EXEC for safety * References assigned in called scopes reset scope at end * Allow named references to $! $? $$ $- $0 $_
* 51375: Clarify documentation, fix typos, add indexing.Bart Schaefer2023-02-125-19/+44
|
* 51374: Expose named references in $parameters, fix substitution error.Bart Schaefer2023-02-125-21/+110
|
* 51362: Begin documentation for named references.Bart Schaefer2023-02-125-7/+146
|
* 51361: Tests for 51360.Bart Schaefer2023-02-123-0/+520
|
* 51360: Initial implementation of named references.Bart Schaefer2023-02-127-16/+266
|
* 51404: Nullify filelist after deleting (fix segfault)Bart Schaefer2023-02-122-2/+10
|
* 51320, 51383: fixes to prevent later reappearance of old attributesOliver Kiddle2023-02-096-3/+14
| | | | Also associated test updates and a test fix for TERM=dumb.
* 51350: ${(S)...//#%...} didn't match the whole stringPeter Stephenson2023-02-063-0/+15
|
* 51354: Fix markup in man page versionDaniel Shahaf2023-02-022-1/+5
|
* 51306: error message in ${unset?error} should be expandedPeter Stephenson2023-02-024-2/+16
|
* 51307: Improve error on attempt to define function from aliased namePeter Stephenson2023-02-024-3/+18
|
* 51342: update PARAMDEF descriptionBart Schaefer2023-01-312-4/+9
|
* 51337: parameter attributes cross-reference typeset equivalents (or lack ↵Bart Schaefer2023-01-313-16/+23
| | | | thereof)
* unposted (cribbed from users/28784 by Roman): Add XFail tests for ↵Daniel Shahaf2023-01-272-0/+21
| | | | substituting a single-quoting backslash.
* 51330: Update python3 completion for version 3.11Shohei YOSHIDA2023-01-272-1/+10
|
* unposted: Fix typo in an X-Seq number in an old ChangeLog entryDaniel Shahaf2023-01-271-1/+1
|
* 51326: Improve -fsanitize option completionShohei YOSHIDA2023-01-242-1/+9
| | | | | - Support comma separated completion - Accept multiple `-fsanitize` options
* 51322 (+ minor tweak): Update gnu make completion for version 4.4Shohei YOSHIDA2023-01-222-2/+9
| | | | | | Add `--jobserver-style`, `--shuffle` and `--trace` options And delete '--warn-undefined-functions' option. This option was implemented only in redhat's older make and the official gnu make has never supported it.
* 51313: fix "git rerere forget" completionBart Schaefer2023-01-212-3/+5
|