about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 52549: document return works in a scriptPeter Stephenson2024-02-192-2/+9
|
* * 52544: _diff_options: support macOS Ventura or newerJun-ichi Takimoto2024-02-192-2/+11
|
* 52558: word splitting differences of nofork; update ToC; formatting fixesBart Schaefer2024-02-182-24/+41
|
* unposted: referent of named reference cannot start with digitsBart Schaefer2024-02-181-0/+2
| | | | This duplicates ksh behavior and doesn't change useful functionality.
* 45837: fix process group restoration upon exitStephane Chazelas2024-02-184-9/+19
|
* Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBart Schaefer2024-02-183-4/+34
|\
| * 52515: (+ tests in 52527) avoid sh errors when running shebang-less scripts ↵Stephane Chazelas2024-02-183-4/+34
| | | | | | | | with paths starting with - or +
* | 52556: regression test for unset referent (left out of last commit)Bart Schaefer2024-02-182-0/+13
|/
* 52556: fix crash when changing type of unset referent via named referenceBart Schaefer2024-02-172-2/+9
|
* 52546: incarg: avoid unneeded subshellMikael Magnusson2024-02-162-2/+5
|
* 52523: fixes to preceding incarg patchmidchildan2024-02-151-2/+3
|
* 52520: add new features and improvements to the "incarg" ZLE widgetmidchildan2024-02-154-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
* github #112: Completion: todo.sh uses shorthelp and not showhelpPoncho2024-02-152-1/+4
|
* 52535: documentation for highlight groups and layersOliver Kiddle2024-02-156-1/+55
|
* 52533: add module to provide alternate readonly views of the content of ↵Oliver Kiddle2024-02-154-0/+252
| | | | .zle.hlgroups
* 52526: metafy terminfo capabilitiesMikael Magnusson2024-02-092-2/+6
|
* cf. users/29635: additional detail of parameter expansion in math context.Bart Schaefer2024-02-042-0/+8
|
* 52521: mapfile (mis)handling of empty/unreadable filesBart Schaefer2024-02-042-0/+7
|
* 52517: ensure that %H is followed by {Mikael Magnusson2024-02-042-4/+8
| | | | | The previous code would accept any character after %H assuming it was a {, which was probably also a buffer overrun sometimes.
* 52516: fix crash in %H when hlgroups is emptyMikael Magnusson2024-02-042-1/+5
| | | | typeset -A .zle.hlgroups; print -P %H
* unposted: updates and fixed omissions for the printdefines utilityBart Schaefer2024-02-032-23/+53
|
* unposted: elaboration on Roman's "slurp" implementation from zsh-usersBart Schaefer2024-02-032-0/+34
|
* Typos in previous commit commentsBart Schaefer2024-02-032-2/+2
|
* unposted: Record as comments some notes about namespace usage exceptions.Bart Schaefer2024-02-034-1/+10
|
* 52513: fixes and doc for using nofork substitutions with private parametersBart Schaefer2024-02-035-34/+170
| | | | Also fixes a crash bug with {fd}>&N redirections and private parameters
* 52510: document how ${ ... } et al. affect use of "private"; add index entriesBart Schaefer2024-01-283-0/+9
|
* 52509: manage internals of stdio objects when performing redirections.Bart Schaefer2024-01-283-1/+28
|
* 52500: add layer token to zle attributesOliver Kiddle2024-01-284-46/+88
| | | | | This provide control over the precedence of highlighting where different regions overlap.
* 52499: support highlight groupsOliver Kiddle2024-01-282-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.
* unposted: remove unused variable to silence compiler warningOliver Kiddle2024-01-282-2/+4
|
* 52442: mark hookdef.name as constJörg Sommer2024-01-282-1/+3
| | | | | At least *zle_main* uses const strings to initialize its structure *zlehooks*.
* 52444: module: Mark name argument of some functions constJörg Sommer2024-01-282-7/+11
|
* 52441: zle_vi: Mark variables with const init as constJörg Sommer2024-01-282-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.
* 52440: zle.textobjects: Mark variables as constJörg Sommer2024-01-282-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.
* 52405, 52502: add empty elements to $match for optional captures that don't ↵Oliver Kiddle2024-01-263-1/+12
| | | | match
* github #110: Fix incorrect completion for `dnf --showduplicates`OpenSauce2024-01-262-1/+4
|
* github #108: add perlbrew completionAurélien Olivier2024-01-262-0/+320
|
* 52385: avoid "tr" in test output formattingBart Schaefer2024-01-252-2/+7
|
* 52496 + 52377: clarify SPROMPT behavior when CORRECT_ALL is setBart Schaefer2024-01-243-4/+17
|
* 52492: prevent indexing error on recursive arithmetic in array subscriptBart Schaefer2024-01-242-1/+9
| | | | Operator returns error when operand returns error
* 52482: strip trailing newlines in emulation modes of ${ command; }Bart Schaefer2024-01-242-0/+9
|
* 52476 + cf. 52479: more FAQs about nofork substitutionBart Schaefer2024-01-242-0/+40
|
* 52477: fix "zcurses mouse delay ..." and one other typoBart Schaefer2024-01-242-2/+4
|
* 52473: zstyle -q for testing existence of a zstyle settingBart Schaefer2024-01-243-0/+41
|
* 52468: save and restore state of correct TTY when using read -s / -dBart Schaefer2024-01-243-15/+34
|
* Fix a typoWu Zhenyu2024-01-142-1/+6
| | | | | $ valgrind --tool=massif --help | grep time-unit --time-unit=i|ms|B time unit: instructions executed, milliseconds
* 52465: use NULL_GLOB when expanding zmv input pattern to avoid NOMATCH exitBart Schaefer2024-01-053-5/+16
|
* 52413: support Citrus version of iconv on macOS, DragonFly, NetBSDJun-ichi Takimoto2023-12-162-1/+6
|
* 52383: Avoid incompatible pointer types in terminfo global variable checksFlorian Weimer2023-12-132-6/+9
|
* 52394: alter form of /dev/fd test to work where /bin/sh is ksh such as on ↵Oliver Kiddle2023-12-132-1/+4
| | | | Solaris 11