Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-06-22 | 51887: namespaces recognized in math, incorrect usages rejected. | Bart Schaefer | 1 | -2/+50 | |
2023-06-22 | 51860: simplify suffix handling in _prefix to remove less accurate hack | Marlon Richert | 2 | -1/+55 | |
This solves the following problems in the _prefix completer: - The old code had logic for dealing with compstate[unambiguous] that was unnecessary. It works fine without it. - Because of this logic, if a widget set compstate[insert]=1 after calling _main_complete, an `x` was left after the completion on the command line. - If the same widget also set `compstate[to_end]=`, then instead, the last character of the inserted completion would be treated as an autoremovable suffix, with the actual suffix being inserted to the line as a normal character. - After inserting a completion, the cursor would move to the end of the entire current word on the command, not the end of word that was inserted. This is not what you want with _prefix, since you are trying to complete a word _before_ the one on the command line, after which you usually want to insert a separator, such as a space or slash, before the next word. | |||||
2023-06-06 | 51816: add :S history modifier with pattern match | Peter Stephenson | 1 | -0/+10 | |
2023-06-06 | 51779: update completion test for 51761 | Marlon Richert | 1 | -5/+5 | |
2023-05-21 | 51348: Fix subscript completion bugs inside ~[...] | Marlon Richert | 1 | -3/+13 | |
When completing inside ~[...] (_with_ the trailing `]` present), the following bugs occured: - Subscript completion was skipped entirely when there were one or more slashes ('/') in the subscript, which is incorrect, since slashes are allowed there. - Instead of going through _complete, $_comps[-subscript-] was called immediately, causing _setup to be skipped. - If succesful, _main_complete was exited right after, causing menu-style, comppostfuncs and other essential completion features to be skipped. | |||||
2023-05-21 | 51758: Make dynamic dir completion easier to implement | Marlon Richert | 1 | -0/+11 | |
2023-05-13 | 51738: support pcre's alternative DFA matching algorithm | Oliver Kiddle | 1 | -0/+5 | |
2023-05-13 | 51728: assign pcre named capture groups to a hash | Oliver Kiddle | 1 | -0/+14 | |
2023-05-13 | 51723: migrate pcre module to pcre2 | Oliver Kiddle | 1 | -2/+11 | |
2023-05-08 | 51692: not skip tests for [[ -r/-N file ]] on Cygwin | Jun-ichi Takimoto | 1 | -7/+1 | |
2023-04-17 | 51652: fix running of TRAPEXIT explicitly. | Peter Stephenson | 1 | -0/+11 | |
This is a special case where TRAPEXIT is unset within a TRAPEXIT as it should never run in a nested context, so just save the function structure temporarily on the heap. | |||||
2023-03-29 | 51608: Don't execute commands after "continue &&" | Peter Stephenson | 1 | -0/+36 | |
Also ! continue || | |||||
2023-03-06 | 51510: Skip namespaces in "set"/"typeset" output, add tests, fix bug | Bart Schaefer | 1 | -0/+106 | |
2023-02-14 | 51437: Fix incorrectly-passed test case, masked by unrelated bug. | Bart Schaefer | 1 | -2/+21 | |
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. | |||||
2023-02-14 | 51424: $(<...) shouldn't try to open a file with NO_EXEC | Peter Stephenson | 1 | -0/+3 | |
2023-02-13 | 51430: Misc. problems with typeset and $parameters | Bart Schaefer | 1 | -0/+14 | |
* Fix and test for regression of assignment when using typeset command * Fix output of typeset +m and $parameters[ref] * Prevent segfault in typeset | |||||
2023-02-12 | 51417: Check subscripts in named reference values more rigorously. | Bart Schaefer | 1 | -2/+2 | |
2023-02-12 | 51403: Tests and documentation for 51402, clean up some other tests. | Bart Schaefer | 1 | -9/+161 | |
2023-02-12 | 51374: Expose named references in $parameters, fix substitution error. | Bart Schaefer | 2 | -16/+90 | |
2023-02-12 | 51361: Tests for 51360. | Bart Schaefer | 2 | -0/+517 | |
2023-02-09 | 51320, 51383: fixes to prevent later reappearance of old attributes | Oliver Kiddle | 2 | -2/+2 | |
Also associated test updates and a test fix for TERM=dumb. | |||||
2023-02-06 | 51350: ${(S)...//#%...} didn't match the whole string | Peter Stephenson | 1 | -0/+7 | |
2023-02-02 | 51306: error message in ${unset?error} should be expanded | Peter Stephenson | 1 | -0/+5 | |
2023-02-02 | 51307: Improve error on attempt to define function from aliased name | Peter Stephenson | 1 | -1/+6 | |
2023-01-27 | unposted (cribbed from users/28784 by Roman): Add XFail tests for ↵ | Daniel Shahaf | 1 | -0/+15 | |
substituting a single-quoting backslash. | |||||
2023-01-16 | 51278: make (i) subscript flag for zero-length string consistent | Peter Stephenson | 1 | -0/+9 | |
2023-01-11 | 51297: update expected test results to match more optimised escape sequences ↵ | Oliver Kiddle | 1 | -8/+8 | |
with recent changes | |||||
2023-01-10 | 51258, 51272: refactor handling of terminal attributes, removing OFF flags ↵ | Oliver Kiddle | 2 | -7/+20 | |
in zattr | |||||
2022-12-17 | 51214: handle read -d and a delimiter that can't be decoded into a character | Oliver Kiddle | 2 | -0/+18 | |
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. | |||||
2022-12-17 | 51207: fix for read -d when the delimiter is a byte >= 0x80 | Jun-ichi Takimoto | 1 | -0/+6 | |
2022-12-16 | 51215: consume whole CSI sequences from the input | Oliver Kiddle | 2 | -0/+29 | |
This affects CSI sequences that aren't explicitly bound but arrive within the usual KEYTIMEOUT time limits. A single undefined-key widget is run instead of unintended bindings for Escape and other characters in the sequence. | |||||
2022-12-12 | 51134: ! return doesn't change the return status | Peter Stephenson | 1 | -0/+12 | |
2022-12-03 | 51076: fix ERR_EXIT when used with "eval" or "source"; documentary comments | Philippe Altherr | 1 | -0/+41 | |
2022-12-03 | 51071: fix ERR_RETURN for functions in conditional statements | Philippe Altherr | 1 | -0/+16 | |
2022-12-03 | 51001: fix for ERR_EXIT following shell function; update tests | Philippe Altherr | 1 | -0/+82 | |
2022-12-03 | 51001: fix for ERR_EXIT with pipeline negation ("!"); update tests | Philippe Altherr | 1 | -0/+15 | |
2022-12-03 | 51001: fix for ERR_EXIT with "always" blocks; update tests | Philippe Altherr | 1 | -7/+29 | |
2022-12-03 | 51001: Reverts 8839e969b, most of 1ba8714a, and d873ed60. | Philippe Altherr | 1 | -5/+10 | |
Also correct ChangeLog | |||||
2022-12-02 | 51079: metafy sep in array subscript flag (s:sep:) | Jun-ichi Takimoto | 1 | -0/+5 | |
this enable sep to contain \0 etc. | |||||
2022-11-23 | unposted (cf. 51016): Add a test case for underscore-followed-by-digits in ↵ | Daniel Shahaf | 1 | -0/+8 | |
math context. | |||||
2022-11-09 | 50928: fix tests for 50897, mention behavior change in NEWS | Bart Schaefer | 1 | -11/+6 | |
2022-11-08 | users/28338: command substitution with alias edge case. | Peter Stephenson | 1 | -0/+8 | |
See added regression test. | |||||
2022-09-27 | 50668: treat 8bit chars correctly when multibyte is unset | Jun-ichi Takimoto | 1 | -0/+7 | |
The problem was found in character range, but may have existed in other occasions | |||||
2022-09-26 | 50662: unset LC_* for all the tests | Jun-ichi Takimoto | 1 | -13/+3 | |
2022-09-26 | 50658 + test: Enable to switch between C/UTF-8 locales in PCRE | Jun-ichi Takimoto | 1 | -0/+11 | |
2022-09-15 | 50629: do not use egrep in tests | Jun-ichi Takimoto | 7 | -59/+23 | |
2022-06-09 | 50342: fix test added by 50306 | Jun-ichi Takimoto | 1 | -1/+1 | |
2022-06-07 | Tweaks to MULTI_FUNC_DEF | Peter Stephenson | 1 | -0/+20 | |
Output multiple function definitions using "function" form. Note exceptions to errors with NO_MULTI_FUNC_DEF | |||||
2022-06-03 | 50306: fix wait for child that was stopped/continued | Jun-ichi Takimoto | 1 | -0/+7 | |
do not call addbgstatus() when child is stopped/continued | |||||
2022-05-02 | Fix problems with tests for 50126 and 50150. | Bart Schaefer | 2 | -1/+5 | |