about summary refs log tree commit diff
path: root/Test/Y01completion.ztst
Commit message (Collapse)AuthorAgeFilesLines
* 51860: simplify suffix handling in _prefix to remove less accurate hackMarlon Richert2023-06-221-0/+48
| | | | | | | | | | | | | | | | | | | 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.
* 51779: update completion test for 51761Marlon Richert2023-06-061-5/+5
|
* 51348: Fix subscript completion bugs inside ~[...]Marlon Richert2023-05-211-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.
* 51758: Make dynamic dir completion easier to implementMarlon Richert2023-05-211-0/+11
|
* 50629: do not use egrep in testsJun-ichi Takimoto2022-09-151-10/+1
|
* 49572: Let _expand preserve array form w/out zstyle globMarlon Richert2021-11-121-0/+11
|
* 48864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert2021-05-211-5/+9
| | | | values
* 48513: Let extra-verbose completion show parameter valuesMarlon Richert2021-04-161-1/+28
|
* 48413: Fix _expand completion testMarlon Richert2021-04-061-2/+1
|
* 48214: add file types to _expand completions, so they can be colored through ↵Marlon Richert2021-03-311-0/+19
| | | | complist
* 48216: Fix broken Y01 test from workers/48180dana2021-03-281-0/+3
|
* 48180: Start menu selection with select=long-list in menu styleMarlon Richert2021-03-171-0/+34
|
* 47849: do not skip tests requiring zpty on CygwinJun-ichi Takimoto2021-01-201-3/+5
|
* 45895: ignore deduplication patterns in _sequenceoxiedi2020-06-261-0/+10
|
* users/24582 + users/24583: Add regression tests for the previous commit.Daniel Shahaf2019-12-311-0/+9
|
* unposted: Fix bad encoding in previous Y01 test patchdana2019-05-081-4/+4
|
* unposted: Add compset tests related to workers/44275Oliver Kiddle2019-05-081-0/+38
| | | | (Provided off-list by Oliver)
* 44274: allow finer control of completion match soring with compadd's -o optionOliver Kiddle2019-05-071-0/+40
|
* 44267: sort: Restore option to ignore backslashesdana2019-05-031-0/+22
| | | | Fix regression introduced by workers/41242
* 42164: fix digits in format escapes in completion listingsdana2018-01-041-0/+15
|
* 39757 plus test: Fix completion under parenthetical directory names, broken ↵Daniel Shahaf2016-11-271-0/+3
| | | | in 39412
* 39993: Tests for 39981.Oliver Kiddle2016-11-211-0/+11
|
* 39787: Add a regression test for 39412.Daniel Shahaf2016-11-011-0/+10
|
* 37181: consistent use of zmodload and corresponding ZTST_unimplemented or ↵Barton E. Schaefer2015-11-211-1/+1
| | | | ZTST_skip
* 34275: assume zpty can't be used for testing CygwinPeter Stephenson2015-01-141-1/+3
|
* unposted: move path assignment from comptest to Y01completion.ztstBarton E. Schaefer2013-12-261-0/+2
|
* 32183: regression tests for 32182 and 31611Barton E. Schaefer2013-12-251-1/+21
|
* 19603: Gracefully omit Y tests if zpty is not availablePeter Stephenson2004-03-111-12/+14
|
* Assorted minor test tweaks.Bart Schaefer2001-08-221-4/+4
|
* Assorted "make check" tweaks.Bart Schaefer2001-06-251-2/+3
|
* moved from ./Test/53completion.ztstSven Wischnowsky2001-04-021-0/+55