summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-03-0252612: %l replacment of zwarning() does literal string outputBart Schaefer4-16/+25
2024-03-0152645: unset through a nameref keep up-scope parameters declared unsetBart Schaefer2-0/+11
Othewise unset of a reference to a global wipes out all parameters of the same name.
2024-02-2852619 (plus tests): no empty element when appending array to unset scalarBart Schaefer3-6/+24
2024-02-2852622 (tweaked, c.f. 52626): adjust number of columns and drop ↵Oliver Kiddle2-6/+12
right-parenthesis in "kill -L" output
2024-02-2852623: add some Solaris signal descriptionsOliver Kiddle2-0/+7
2024-02-2852594: support for POSIX real-time signals with kill and trapOliver Kiddle14-63/+249
Also add new -L option to kill for a more verbose listing of signals
2024-02-24Fix META_NOALLOC to META_STATIC in 'bad interpreter' metafyBart Schaefer1-2/+2
2024-02-2452597: fix character counts in context of operator and operand errorsBart Schaefer2-7/+21
2024-02-2452596: metafy interpreter name for error messageBart Schaefer2-3/+5
2024-02-2452591: printf builtin must pass metafied strings to math evaluationStephane Chazelas2-4/+11
2024-02-2352583: extra check for proper scope and existence of readonly specialsBart Schaefer3-2/+70
2024-02-2252552: newer Java supports passing source files directly to javaOliver Kiddle2-1/+9
2024-02-2052559: revise "typeset -p" with respect to local readonly special parametersBart Schaefer8-12/+69
Update doc and tests to describe handling of global readonly specials and to account for side-effects on zsh/param/private.
2024-02-1952549: document return works in a scriptPeter Stephenson2-2/+9
2024-02-19* 52544: _diff_options: support macOS Ventura or newerJun-ichi Takimoto2-2/+11
2024-02-1852558: word splitting differences of nofork; update ToC; formatting fixesBart Schaefer2-24/+41
2024-02-18unposted: referent of named reference cannot start with digitsBart Schaefer1-0/+2
This duplicates ksh behavior and doesn't change useful functionality.
2024-02-1845837: fix process group restoration upon exitStephane Chazelas4-9/+19
2024-02-18Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBart Schaefer3-4/+34
2024-02-1852556: regression test for unset referent (left out of last commit)Bart Schaefer2-0/+13
2024-02-1852515: (+ tests in 52527) avoid sh errors when running shebang-less scripts ↵Stephane Chazelas3-4/+34
with paths starting with - or +
2024-02-1752556: fix crash when changing type of unset referent via named referenceBart Schaefer2-2/+9
2024-02-1652546: incarg: avoid unneeded subshellMikael Magnusson2-2/+5
2024-02-1552523: fixes to preceding incarg patchmidchildan1-2/+3
2024-02-1552520: add new features and improvements to the "incarg" ZLE widgetmidchildan4-37/+630
- Decrement integers without defining a new widget - Preserve the number of leading zeros - Increment binaries, octals, and hexadecimals - Move the cursor to the end of the incremented integer - Create a sequence of integers across terminal panes - Add a Vim variant - Also add tests
2024-02-15github #112: Completion: todo.sh uses shorthelp and not showhelpPoncho2-1/+4
2024-02-1552535: documentation for highlight groups and layersOliver Kiddle6-1/+55
2024-02-1552533: add module to provide alternate readonly views of the content of ↵Oliver Kiddle4-0/+252
.zle.hlgroups
2024-02-0952526: metafy terminfo capabilitiesMikael Magnusson2-2/+6
2024-02-04cf. users/29635: additional detail of parameter expansion in math context.Bart Schaefer2-0/+8
2024-02-0452521: mapfile (mis)handling of empty/unreadable filesBart Schaefer2-0/+7
2024-02-0452517: ensure that %H is followed by {Mikael Magnusson2-4/+8
The previous code would accept any character after %H assuming it was a {, which was probably also a buffer overrun sometimes.
2024-02-0452516: fix crash in %H when hlgroups is emptyMikael Magnusson2-1/+5
typeset -A .zle.hlgroups; print -P %H
2024-02-03unposted: updates and fixed omissions for the printdefines utilityBart Schaefer2-23/+53
2024-02-03unposted: elaboration on Roman's "slurp" implementation from zsh-usersBart Schaefer2-0/+34
2024-02-03Typos in previous commit commentsBart Schaefer2-2/+2
2024-02-03unposted: Record as comments some notes about namespace usage exceptions.Bart Schaefer4-1/+10
2024-02-0352513: fixes and doc for using nofork substitutions with private parametersBart Schaefer5-34/+170
Also fixes a crash bug with {fd}>&N redirections and private parameters
2024-01-2852510: document how ${ ... } et al. affect use of "private"; add index entriesBart Schaefer3-0/+9
2024-01-2852509: manage internals of stdio objects when performing redirections.Bart Schaefer3-1/+28
2024-01-2852500: add layer token to zle attributesOliver Kiddle4-46/+88
This provide control over the precedence of highlighting where different regions overlap.
2024-01-2852499: support highlight groupsOliver Kiddle2-2/+52
These are defined in a .zle.hlgroups associative array and referenced using %H in prompt strings or hl= in zle_highlight/region_highlight.
2024-01-28unposted: remove unused variable to silence compiler warningOliver Kiddle2-2/+4
2024-01-2852442: mark hookdef.name as constJörg Sommer2-1/+3
At least *zle_main* uses const strings to initialize its structure *zlehooks*.
2024-01-2852444: module: Mark name argument of some functions constJörg Sommer2-7/+11
2024-01-2852441: zle_vi: Mark variables with const init as constJörg Sommer2-1/+3
Because these variables are initialized with as constant string, they should be marked as *const* to make the compiler running with `-Wwrite-strings` more happy.
2024-01-2852440: zle.textobjects: Mark variables as constJörg Sommer2-3/+7
Because these variables are initialized with as constant string, they should be marked as *const* to make the compiler running with `-Wwrite-strings` more happy.
2024-01-2652405, 52502: add empty elements to $match for optional captures that don't ↵Oliver Kiddle3-1/+12
match
2024-01-26github #110: Fix incorrect completion for `dnf --showduplicates`OpenSauce2-1/+4
2024-01-26github #108: add perlbrew completionAurélien Olivier2-0/+320