summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* unposted: document zparseopts's lack of support for abbreviating long optionsdana2025-04-273-1/+9
| | | | per workers/53520
* unposted: docs: adjust zgetopt wordingdana2025-04-272-7/+9
| | | | per workers/53518
* 53516: add zgetopt contrib functiondana2025-04-275-1/+489
|
* 53515: tests: correct ztst documentation errordana2025-04-272-9/+11
|
* unposted: fix seq numbers for old changelog entryMikael Magnusson2025-04-241-8/+8
|
* unposted: Test release: zsh-5.9.0.2-test.zsh-5.9.0.2-testEric Cook2025-04-205-6/+14
|
* 53463: _hosts: allow overriding the default matching controlEric Cook2025-04-202-1/+7
|
* 53483: zparseopts -G: accept only '--' as parsing terminatordana2025-04-194-8/+41
|
* 53482: zparseopts -G: always add options with optional args to array with =dana2025-04-193-5/+11
|
* 53454: fix interrupt handling in savehistfile()Bart Schaefer2025-04-152-5/+12
|
* unposted: add missing Changelog entry for _typeset fixEric Cook2025-04-151-0/+4
|
* 53485: NEWS: update for version 5.10Eric Cook2025-04-152-9/+32
|
* _typeset: fix typoMikael Magnusson2025-04-141-1/+1
|
* unposted: NEWS: update per w/53257 and w/53260dana2025-04-132-0/+16
|
* 53449: do not complete indices for empty array subscriptsKyle Andelin2025-04-042-0/+6
|
* 53445: extra-verbose mode support on some recent Linux and BSD systemsOliver Kiddle2025-04-042-7/+32
|
* 53431: fix assignment via named reference to parameters in outer scopesBart Schaefer2025-03-313-2/+56
|
* 53414: attempting to preview the "restore" keyword is nonsensicalFrank Dana2025-03-312-3/+15
|
* 53413: "print -rP" in preview, in case of special charactersFrank Dana2025-03-312-1/+6
|
* 53399: don't load ZLE early to set keymapOliver Kiddle2025-03-035-27/+18
| | | | | | When zsh is run with -o vi / -o emacs, instead of loading ZLE to force the change, only record the option state. Then when ZLE starts, the vi option determines the default keymap.
* 53394: drop OSC and DCS sequences in key inputOliver Kiddle2025-03-032-2/+31
| | | | | They are likely to be terminal query responses not keys. If they do match a keybinding that's not affected. Also does likewise for certain CSI sequences.
* 53368: ignore no-op changes to EMACS/VI optionsBart Schaefer2025-03-022-1/+11
|
* 53395: complete snapshot ranges for zfs destroyOliver Kiddle2025-02-283-5/+33
|
* 53393: Complete python module argumentsRonan Pigott2025-02-285-0/+46
| | | | | | | Python modules can behave like commands in their own right. This allows modules to define _python_module-* functions that are used to complete module arguments. Also gets the ball rolling by defining completions for venv, http.server, and json.tool.
* github #129: fix _gpg completionVadim Misbakh-Soloviov2025-02-272-2/+9
| | | | | | | | 1) As for now, `--local-user` completion is irrelevant: it completes system users, while gpg expects private keys IDs 2) `secret-keys` completion was also broken and completed nothing. The reason of that to happen was in that fact that it assumed `uid` token would be next after `fpr` (same as it do in public-keys completion), while in current gnupg versions there is at least `grp` token, and potentially can be others. So, instead i+=2 I made `until "uid"` loop.
* 53378: support new pipebuf resource limit on FreeBSDOliver Kiddle2025-02-274-2/+22
| | | | Also add other newer limits to the documentation.
* 53363: permit "typeset -n +m pattern"Bart Schaefer2025-02-152-4/+10
| | | | Also fix spurious error printing the value of a read-only named reference
* 53358: adapt completion to reflect 53348 and extend exclusion lists to cover ↵Oliver Kiddle2025-02-132-28/+33
| | | | more + options
* 53360: domenuselect() fails if the previous completion did not generate a listBart Schaefer2025-02-122-0/+6
| | | | (fix for segfault)
* 53346 (cf. 53350): Util/helpfiles: fix use of "man" on file pathsBart Schaefer2025-02-122-1/+3
|
* 53348: Revise handling of incompatible typeset options when used with -nBart Schaefer2025-02-124-8/+24
|
* unposted: remove a few more files by 'make clean'Jun-ichi Takimoto2025-02-043-2/+7
| | | | | Doc/zsh.{idx,kys} and Etc/FAQ{01-06}.html. These files are already in .gitignore
* github #118: completion(git-rebase): non-interactive mode also supports ↵Eisuke Kawashima2025-01-302-9/+5
| | | | --autosquash
* 53338: complete typeset -n optionOliver Kiddle2025-01-302-27/+36
|
* 53337: allow nameref -pOliver Kiddle2025-01-303-2/+4
|
* 53336: avoid GNU make specific use of $< in a non-inference ruleOliver Kiddle2025-01-303-5/+8
|
* 53335: Remove unused dupstring_glen() functionOliver Kiddle2025-01-307-44/+24
| | | | Also make use of the dupstring_wlen() variant in more places to avoid a strlen()
* 53332, 53334: Avoid strlen calls after sprintfOliver Kiddle2025-01-306-33/+27
|
* 53329: adapt .zle.sgr for CSI sequences that use : instead of ;Oliver Kiddle2025-01-272-3/+11
|
* github #128: Updated completion for neovimGI2025-01-272-10/+19
|
* github #126: Fix some typosWu, Zhenyu2025-01-278-9/+13
|
* github #125: Add completion for irb --no-pagerKouhei Yanagita2025-01-272-0/+4
|
* unposted: fix quoting in openldap completionOliver Kiddle2025-01-272-1/+3
|
* 53327: update for git 2.47Oliver Kiddle2025-01-272-22/+116
|
* 53328: completion options updateOliver Kiddle2025-01-2717-64/+321
|
* 53326: completion updates for core Linux utilsOliver Kiddle2025-01-2724-28/+72
|
* 53325: cover newer BSD releases in completionOliver Kiddle2025-01-2723-60/+182
|
* Julian Prein: 53309: remove uncommon / obsolete options -t and -WBart Schaefer2025-01-202-2/+5
|
* 53294: fix multibyte handling in "select" promptsBart Schaefer2025-01-032-3/+19
|
* 53293: fix menu() and texinode() in yodl docsJun-ichi Takimoto2025-01-034-7/+13
|