summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-02-2644085: _remote_files: Prevent ls/alias settings from mangling file listingsdana2-1/+7
2019-02-2644080: Completion: Fix several option-description typosdana33-41/+65
2019-02-24unposted: _less: Fix typodana2-1/+5
Reported here: https://www.reddit.com/r/zsh/comments/au98zv/_/
2019-02-2244077: completion: Fix GNU _pick_variant patterns, partially fix `getent -s`dana6-9/+19
2019-02-2244076: _column: Support Debian, add missing options, adjust wordingdana2-12/+39
Tweaked per off-list discussion with Daniel: We agreed that it would be best to side-step the wording disagreement between the BSD and util-linux implementations by using our own description for -x, which was borrowed from the one for `print -ca`
2019-02-1844067: Make history read safer on interrupt.Yutian Li2-3/+14
Record if a read was interrupted and if so process it in full next time a read is needed.
2019-02-14c.f. 44062: Back off clearflag change to ZLE line init.Peter Stephenson2-1/+6
This causes problems with failed ZLE reads that printed a message in the display area, in particular ignoreEOF warnings. It appears it's not needed for the overall effect of the fixes in zsh-workers/40302, commit 34656ec2.
2019-02-09gitlab !5: Add new abcde completion.Doron Behar2-0/+55
2019-02-09github #31: Add new demangle style, rust and dlangHiroki Noda3-2/+8
2019-02-03unposted: Post-release version bumpdana2-2/+4
2019-02-03unposted: Release 5.7.1dana4-4/+7
2019-02-0344034: _date_formats: Complete %9./%N, adjust wordingdana2-7/+15
2019-02-0344033: Add completion for dos2unix/unix2dosdana2-0/+132
2019-02-0344030: prompt: Return error for unrecognised colour namedana3-0/+15
2019-01-28github #32: Fix a typo in the git tag completion.Fredric Silberberg2-1/+6
2019-01-27unposted: Update release instructionsdana2-2/+45
2019-01-2744020: VCS_INFO_detect_p4: Fix infinite recursiondana2-1/+5
2019-01-24unposted: Post-release version bumpdana2-2/+4
2019-01-24unposted: Release 5.7dana3-3/+8
2019-01-2344012: X04zlehighlight: Fix spurious test failures on OpenBSDdana2-1/+13
2019-01-2344011: Only use fg_start_code for non-truecolorMikael Magnusson4-16/+36
The sequence for truecolor uses a different prefix from palette colors
2019-01-2144001: _brace_parameter: Complete (q+)dana2-0/+5
2019-01-1843990: _opkg: Support gain-privilegesdana2-4/+14
2019-01-08users/23829: add and coument file-split-chars stylePeter Stephenson3-0/+20
2019-01-05unposted: Update for 5.6.2-test-3dana3-2/+10
2019-01-0443974: _git: Always offer -F/-m for `git tag`dana2-10/+5
2019-01-0443970: Update NEWS for previously unmentioned features in 5.{4,5,6}dana3-2/+39
Also clarify release documentation and fix a typo mentioned in workers/43971
2019-01-0343969: untokenize Dash for compctl with GLOB_SUBST setPeter Stephenson2-0/+14
2019-01-02unposted: Add missing change-log entries for 37302 and 37303dana1-0/+6
e40a14c5e (workers/37302) and dc8c39eff (workers/37303) were committed without change-log entries Note also that the commit message for e40a14c5e erroneously referred to workers/37202
2019-01-0143960: Add full completion for exec and setsiddana4-1/+26
2019-01-0143959: Add completion for strongSwan, &al.dana4-1/+411
Also update _urls to complete unix:// URIs as for file://
2018-12-3143962: Fix X04 test module_pathdana2-0/+5
2018-12-30users/23809: ZLE_HIGHLIGHT extensions.Peter Stephenson3-4/+183
Allow non-termcap use of colours > 7. Add tests.
2018-12-3043945 (tweaked to remove test failure, noted in test):Martijn Dekker3-10/+68
Fix exit statuses from wait for POSIX_BUILTINS mode. Also add tests.
2018-12-3043944: apply NO_UNSET consistently to arithmeitcMartijn Dekker5-1/+32
2018-12-30unposted: test for 43938Peter Stephenson1-0/+8
2018-12-3043914 (tweaked): Add completion for Composerdana2-0/+853
Tweaks: Adjusted spelling, fixed minor idiomatic issues
2018-12-3043930: Improve _multi_parts performancedana2-7/+11
2018-12-30unposted (per 43938): Avoid segfault when unmetafying empty stringdana2-1/+6
2018-12-2943953: Fix rounding/truncation error in %. time-format specifierdana3-6/+36
Also fixes an issue where %. couldn't be used more than once in a format string without strange results Tweaked very slightly per workers/43954
2018-12-2443935: Reject too-large nanosecond values given to strftimedana3-3/+12
... and, in so doing, fix an error in the tests on 32-bit machines. The value for the new too-large test is changed slightly from the patch posted to the ML to make it test for the right thing on 32-bit machines as well.
2018-12-2343928: _alternative: Evaluate (...) action syntax as with _argumentsdana2-1/+8
2018-12-2143921: ${\var} should be an errorBart Schaefer2-1/+5
2018-12-19unposted: updates for 5.6.2-test-2Peter Stephenson4-15/+17
2018-12-19unposted, c.f. 43913: emulate -L zsh in edit-command-linePeter Stephenson2-0/+7
Otherwise bad effects observed with GLOB_SUBST set.
2018-12-1743897: Add/update various completion functionsdana12-4/+264
* Update tail to support -q/-v on NetBSD * Add several new functions (with one change needed to _hosts compdefs)
2018-12-1743895: _watch: Complete for procps/-ng watchdana2-5/+43
2018-12-1743904 (plus tweak): zshmisc(1): document term being optional if `in word' is ↵Joey Pabalinas2-3/+11
omitted In code such as: > hobbes% () { for arg do print -r $arg; done; } 1 2 3 > 1 > 2 > 3 the implicit positional parameters added when the `in word ...' list is omitted also implicitly append the separator term, making the above code valid, albeit seemingly violating the syntax listed in the documentation. This is related to the various forms of alternative syntax and is the intended behavior of the parsing code, so correct the minor contradiction in the for loop documentation.
2018-12-14unposted: _dig: Fix _arguments syntax errordana2-2/+7
2018-12-1343879: vcs_info git: Fix fatal error in VCS_INFO_git_getbranch in corner caseDaniel Shahaf2-4/+12
Before this commit, the following use-case: git checkout foo^ git show foo | git am would result in a fatal error, with vcs_info_msg_N_ not set: VCS_INFO_git_getbranch:18: no such file or directory: .git/rebase-apply/onto Now they are set correctly, and HEAD's commit hash is used.