summaryrefslogtreecommitdiff
path: root/Test/Y01completion.ztst
AgeCommit message (Collapse)AuthorFilesLines
2024-11-2353244: rename user in test case to reduce likelihood of failure due to user ↵Oliver Kiddle1-8/+8
existing
2023-06-2251860: simplify suffix handling in _prefix to remove less accurate hackMarlon Richert1-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.
2023-06-0651779: update completion test for 51761Marlon Richert1-5/+5
2023-05-2151348: Fix subscript completion bugs inside ~[...]Marlon Richert1-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-2151758: Make dynamic dir completion easier to implementMarlon Richert1-0/+11
2022-09-1550629: do not use egrep in testsJun-ichi Takimoto1-10/+1
2021-11-1249572: Let _expand preserve array form w/out zstyle globMarlon Richert1-0/+11
2021-05-2148864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert1-5/+9
values
2021-04-1648513: Let extra-verbose completion show parameter valuesMarlon Richert1-1/+28
2021-04-0648413: Fix _expand completion testMarlon Richert1-2/+1
2021-03-3148214: add file types to _expand completions, so they can be colored through ↵Marlon Richert1-0/+19
complist
2021-03-2848216: Fix broken Y01 test from workers/48180dana1-0/+3
2021-03-1748180: Start menu selection with select=long-list in menu styleMarlon Richert1-0/+34
2021-01-2047849: do not skip tests requiring zpty on CygwinJun-ichi Takimoto1-3/+5
2020-06-2645895: ignore deduplication patterns in _sequenceoxiedi1-0/+10
2019-12-31users/24582 + users/24583: Add regression tests for the previous commit.Daniel Shahaf1-0/+9
2019-05-08unposted: Fix bad encoding in previous Y01 test patchdana1-4/+4
2019-05-08unposted: Add compset tests related to workers/44275Oliver Kiddle1-0/+38
(Provided off-list by Oliver)
2019-05-0744274: allow finer control of completion match soring with compadd's -o optionOliver Kiddle1-0/+40
2019-05-0344267: sort: Restore option to ignore backslashesdana1-0/+22
Fix regression introduced by workers/41242
2018-01-0442164: fix digits in format escapes in completion listingsdana1-0/+15
2016-11-2739757 plus test: Fix completion under parenthetical directory names, broken ↵Daniel Shahaf1-0/+3
in 39412
2016-11-2139993: Tests for 39981.Oliver Kiddle1-0/+11
2016-11-0139787: Add a regression test for 39412.Daniel Shahaf1-0/+10
2015-11-2137181: consistent use of zmodload and corresponding ZTST_unimplemented or ↵Barton E. Schaefer1-1/+1
ZTST_skip
2015-01-1434275: assume zpty can't be used for testing CygwinPeter Stephenson1-1/+3
2013-12-26unposted: move path assignment from comptest to Y01completion.ztstBarton E. Schaefer1-0/+2
2013-12-2532183: regression tests for 32182 and 31611Barton E. Schaefer1-1/+21
2004-03-1119603: Gracefully omit Y tests if zpty is not availablePeter Stephenson1-12/+14
2001-08-22Assorted minor test tweaks.Bart Schaefer1-4/+4
2001-06-25Assorted "make check" tweaks.Bart Schaefer1-2/+3
2001-04-02moved from ./Test/53completion.ztstSven Wischnowsky1-0/+55