Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 52473: zstyle -q for testing existence of a zstyle setting | Bart Schaefer | 2024-01-24 | 1 | -0/+7 |
| | |||||
* | 52465: use NULL_GLOB when expanding zmv input pattern to avoid NOMATCH exit | Bart Schaefer | 2024-01-05 | 1 | -4/+4 |
| | |||||
* | 52326, 52372: add -q option to kill for sigqueue | Oliver Kiddle | 2023-12-05 | 1 | -1/+4 |
| | |||||
* | 52356: add missing function index entries | Jun-ichi Takimoto | 2023-12-04 | 1 | -0/+3 |
| | |||||
* | 52325: Clarify doc for edge cases of named references and nofork substitution | Bart Schaefer | 2023-11-23 | 3 | -11/+14 |
| | | | | Unposted whitespace change avoids a parse error in ${ ... } with comments. | ||||
* | Unposted (cf. 52296): correct description of "vared -e" | Bart Schaefer | 2023-11-18 | 1 | -1/+1 |
| | |||||
* | 52253: support pcre callouts with shell evaluation of the callout string | Oliver Kiddle | 2023-11-02 | 1 | -0/+5 |
| | |||||
* | 52222: Document bracketed-paste-url-magic | Mikael Magnusson | 2023-10-17 | 1 | -0/+27 |
| | |||||
* | 52180: clarify array behavior of ${|var|...} and REPLY | Bart Schaefer | 2023-09-23 | 1 | -2/+3 |
| | |||||
* | 51980: Add glob qualifier grouping operator to completion | Atte Peltomäki | 2023-09-20 | 1 | -3/+4 |
| | | | | | Also improve wording in documentation to make glob qualifier grouping easier to find by explicit use of terms 'logical OR' and 'logical AND'. | ||||
* | 52154, 52155: Implement, document, and test non-forking command substitution. | Bart Schaefer | 2023-09-16 | 1 | -6/+38 |
| | | | | | | Comprises workers/51957, 51985, 51987, 51988, 51993, 52131, 52139, plus fixes for return values, parse errors, and trailing newlines (which were incorrectly removed) in ${ ... } | ||||
* | 52028: improvements to _shadow / _unshadow, plus helper and doc | Bart Schaefer | 2023-08-27 | 2 | -23/+51 |
| | |||||
* | 29130, 21931 (Ray): document what typeset -t is for. | Peter Stephenson | 2023-08-16 | 1 | -2/+4 |
| | | | | This replaces documenting what it isn't for. | ||||
* | unposted (cf. 51968): improve documentation of typeset -gn and -r | Bart Schaefer | 2023-07-26 | 1 | -2/+2 |
| | |||||
* | 51945: assorted documentation improvements, bug fixes, and new test | Bart Schaefer | 2023-07-26 | 3 | -4/+16 |
| | | | | | | | | | | | | | | 1) Document the behavior of "typeset -n existing_var" (via Jun T. comment) 2) Prohibit "typeset -nm pattern" because, well, it's insane. Add test. 3) Improve doc for ${(!)ref} including ${{t!)ref} (Jun T.) 4) Fix doc for how-to unset of a named ref (Jun T.) 5) Allow "typeset +r -n ref" and "typeset +r +n ref" (Jun T.) 6) Fix "typeset -r -n ref=param" to create readonly references 7) Avoid accidental removal of PM_UNSET flag (Jun T.) and update test 8) Fix "typeset -gn ref=value" and add a test for it 9) Add tests for read-only reference behavior 10) Fix infinite recursion when resolving scope of an unset local named reference, add test. | ||||
* | unposted (cf. 51899): document _shadow | Bart Schaefer | 2023-07-26 | 1 | -0/+44 |
| | |||||
* | 51884: reset IFS if it contains invalid characters | Jun-ichi Takimoto | 2023-06-26 | 1 | -2/+5 |
| | | | | This happens only if MULTIBYTE option is on. | ||||
* | 51816: add :S history modifier with pattern match | Peter Stephenson | 2023-06-06 | 1 | -6/+12 |
| | |||||
* | 51760: r and R were listed in the wrong order. | Marlon Richert | 2023-05-21 | 1 | -3/+3 |
| | |||||
* | 51758: Make dynamic dir completion easier to implement | Marlon Richert | 2023-05-21 | 1 | -27/+17 |
| | |||||
* | 51738: support pcre's alternative DFA matching algorithm | Oliver Kiddle | 2023-05-13 | 1 | -1/+5 |
| | |||||
* | 51728: assign pcre named capture groups to a hash | Oliver Kiddle | 2023-05-13 | 1 | -4/+6 |
| | |||||
* | 51609: fix reference to select(2) | Jim | 2023-05-11 | 1 | -1/+1 |
| | |||||
* | 51639: new parameter ZSH_EXEPATH (full path of zsh executable) | Jun-ichi Takimoto | 2023-04-11 | 1 | -0/+4 |
| | | | | | | The full pathname is obatined by a reliable method on macOS and systems that support procfs. But on other systems (FreeBSD, OpenBSD, ...) it is guessed from argv[0], PWD and PATH. | ||||
* | 51631: initialize $_ by copying it from environment | Jun-ichi Takimoto | 2023-04-09 | 1 | -1/+4 |
| | |||||
* | 51558: Clarify "for" with positional parameters and named reference. | Bart Schaefer | 2023-03-11 | 1 | -0/+3 |
| | |||||
* | 51557: Clarify availability of ksh-mode parameters, improve vi-mode detection. | Bart Schaefer | 2023-03-11 | 1 | -3/+5 |
| | |||||
* | 51511: More discussion of unsupported ksh features | Bart Schaefer | 2023-03-06 | 1 | -17/+54 |
| | |||||
* | 51511: Documentation for namespaces | Bart Schaefer | 2023-03-06 | 2 | -1/+28 |
| | |||||
* | 51485: module for several ksh93 features, mostly enabled only in ksh emulation. | Bart Schaefer | 2023-03-05 | 1 | -0/+211 |
| | |||||
* | 51484: Extend named reference handling for special parameters, improve doc. | Bart Schaefer | 2023-03-05 | 1 | -0/+2 |
| | |||||
* | Fix typo | Bart Schaefer | 2023-02-26 | 1 | -1/+1 |
| | |||||
* | 51403: Tests and documentation for 51402, clean up some other tests. | Bart Schaefer | 2023-02-12 | 5 | -9/+53 |
| | |||||
* | 51375: Clarify documentation, fix typos, add indexing. | Bart Schaefer | 2023-02-12 | 4 | -19/+41 |
| | |||||
* | 51362: Begin documentation for named references. | Bart Schaefer | 2023-02-12 | 4 | -7/+143 |
| | |||||
* | 51354: Fix markup in man page version | Daniel Shahaf | 2023-02-02 | 1 | -1/+1 |
| | |||||
* | 51306: error message in ${unset?error} should be expanded | Peter Stephenson | 2023-02-02 | 1 | -1/+3 |
| | |||||
* | 51337: parameter attributes cross-reference typeset equivalents (or lack ↵ | Bart Schaefer | 2023-01-31 | 2 | -16/+18 |
| | | | | thereof) | ||||
* | 51291: support for highlighting ellipses in the line editor | Oliver Kiddle | 2023-01-10 | 1 | -0/+3 |
| | |||||
* | 51280: add support for italic and faint fonts in the line editor | Oliver Kiddle | 2023-01-10 | 1 | -1/+9 |
| | |||||
* | 51263: fix typo - `an path` -> `a path` | Max Coplan | 2022-12-31 | 1 | -1/+1 |
| | |||||
* | 51214: handle read -d and a delimiter that can't be decoded into a character | Oliver Kiddle | 2022-12-17 | 1 | -1/+2 |
| | | | | | | Terminate input at the raw byte value of the delimiter. Also document and test the use of an empty string as a way to specify NUL as the delimiter. | ||||
* | 51198: Clarify and expand ERR_EXIT and ERR_RETURN documentation | Philippe Altherr | 2022-12-13 | 1 | -38/+46 |
| | |||||
* | 51134: document interactive behaviour with ERR_EXIT and ERR_RETURN | Peter Stephenson | 2022-12-12 | 1 | -1/+7 |
| | |||||
* | 50934: use OSC 52 escape sequence when copying to "* or "+ vi buffers | Oliver Kiddle | 2022-11-17 | 1 | -3/+8 |
| | |||||
* | 50851: restore typtab when necessary | Jun-ichi Takimoto | 2022-11-02 | 1 | -6/+10 |
| | | | | | | | | | inittyptab() must be called when returning from a function with "setopt localoptions MULTIBYTE|BANGHIST|SHSTDIN", and also in function dosetopt() when setting these options (via $options, for example). We intentionally did not take account of the options EMACS/VI because these options are obsolete and their use is not recommended. | ||||
* | 50855: Clarify how commands are hashed, and searched-for by "whence". | Bart Schaefer | 2022-10-31 | 2 | -7/+15 |
| | |||||
* | 50840: Doc/Zsh/grammar.yo: Correct NO_MATCH to NOMATCH | Axel Beckert | 2022-10-25 | 1 | -1/+1 |
| | |||||
* | users/28243: update "typeset +" documentation | Bart Schaefer | 2022-10-23 | 1 | -3/+5 |
| | |||||
* | 50648: Use $ZCALC_HISTORY where appropriate | Julian Prein | 2022-09-25 | 1 | -2/+5 |
| |