summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-04-0542590: fix detection of OSTYPE in _fmtJun-ichi Takimoto2-1/+3
2018-04-0542585: improve completion for libarchive-based tarJun-ichi Takimoto3-2/+7
Offer all compressed archives if no compression flag is specified because libarchive can automaticaly recoginize them. cf. 42574 (Eitan Adler).
2018-04-0542591: complete *.changes and *.dsc files alongside *.debOliver Kiddle2-1/+4
2018-04-0542584: complete options for ssh-keyscan and update options for ssh-copy-idOliver Kiddle2-6/+27
2018-04-0542583: new column completionOliver Kiddle2-0/+61
2018-04-0542582: updates to options in completions for OpenBSD 6.3Oliver Kiddle5-6/+33
2018-04-0542575: fix to not complete options in the argument to another optionOliver Kiddle3-1/+21
2018-04-0542578: _shutdown: add support for macOSJun-ichi Takimoto2-2/+15
2018-04-0542577: fix macOS support in _stringsJun-ichi Takimoto2-2/+6
2018-04-04unposted: 5.4.2-test-2Peter Stephenson2-2/+4
2018-04-0442581(?): Fix ZLE inline history expansion.Peter Stephenson4-3/+44
Seen with magic-space. If there's a parse error in command subtitution we need to complete reading history to ensure the command line buffer is finished.
2018-03-3142572: various completion option updatesOliver Kiddle15-27/+77
2018-03-3142571: new completion for FreeBSD jail commandOliver Kiddle3-1/+59
2018-03-3042568: new shutdown completionOliver Kiddle2-0/+63
2018-03-3042569: improve lsof completion after -i and -s optionsOliver Kiddle2-8/+45
2018-03-3042567: new completion for xmlstarletOliver Kiddle2-0/+180
2018-03-3042570: new completion for drill and factor out DNS type completionOliver Kiddle4-10/+59
2018-03-3042560: silence sign-compare compiler warningsOliver Kiddle2-3/+5
2018-03-3042566: new strings completionOliver Kiddle2-0/+77
2018-03-2942564: _adb: Various improvementsMikael Magnusson2-49/+49
Show product as description by default Add zstyle for naming devices via serial number Add --user to uninstall and other improvements
2018-03-2842548: new pwgen completionOliver Kiddle2-0/+21
2018-03-2842549: also handle the yumdb command in yum completionOliver Kiddle2-1/+56
2018-03-2842550: new completion for ruby's gemOliver Kiddle2-0/+305
2018-03-2842539: prevent overflow of PATH_MAX-sized buffer in spelling correctionOliver Kiddle2-5/+14
2018-03-2742538: Temporarily set umask for here document.Martijn Dekker3-0/+19
Done while signals are queued.
2018-03-2542480: optimize $#var for single-byte character setsBarton E. Schaefer2-1/+5
2018-03-2542505 (corrected): prepare for 5.5 releasePeter Stephenson3-6/+11
2018-03-2442520: don't use an empty but existing option cache in netcat completionOliver Kiddle2-4/+8
2018-03-2442521 based on 42049 (SATOH Fumiyasu): fix finding of includes in make ↵Oliver Kiddle2-11/+11
completion make always includes relative to the current directory rather than relative to the including Makefile.
2018-03-2442519, CVE-2018-1083: check bounds on PATH_MAX-sized buffer used for file ↵Oliver Kiddle2-0/+9
completion candidates
2018-03-2442518, CVE-2018-1071: check bounds when copying path in hashcmd()Oliver Kiddle3-4/+9
2018-03-24unposted: add 'static' to a file-local variableJun-ichi Takimoto2-1/+4
2018-03-2442501: avoid out of bound pointer (as 42487)Jun-ichi Takimoto4-8/+12
2018-03-2442491 based on 42000 (Andrei Shevchuk): factor ssh host completion for use ↵Oliver Kiddle5-50/+58
for mosh and git
2018-03-2342497 (tweaked c.f. 42498): make completion after apt install work on local ↵Oliver Kiddle2-13/+19
.deb files
2018-03-2242191: new completion for otool (macOS)Jun-ichi Takimoto2-0/+51
2018-03-2142487: Fix pointer problems in compctl.Peter Stephenson2-32/+37
Pointing off the front of a string caused warnings with gcc 7.3.0 and is somewhat murky C anyway.
2018-03-1842469: necessary repairs to 42465 found by "make check"Stephane Chazelas3-4/+7
2018-03-1542465: Pass up error status from readoutput().Stephane Chazelas3-4/+21
This improves the consistency of error reporting from $(...) constructs.
2018-03-1242453: Fix race in look up of status for wait.Peter Stephenson2-2/+10
Background jobs that had just exited could still be in the table when the process had already finished and the status was recorded, causing the wrong status to be reported.
2018-03-07github #22: Add newer C++ standard options to gcc completionFerenc-2-1/+4
2018-03-07github #23: new kdeconnect-cli completionMatthijs Tijink2-0/+38
2018-03-0542365: Use .zwc file if timestamp identical to source.Martijn Dekker2-4/+9
This can happen if the files are bundled together.
2018-03-0442411: Assume current C librarires handle free(NULL)Taylor West2-4/+7
2018-02-2623180: Fix expand-or-complete with ~[...].Peter Stephenson2-0/+13
The square brackets shouldn't be treated as wildcards.
2018-02-2642401: workaround for gcc -foptimize-strlen oddit.Peter Stephenson2-1/+10
Use realloc(NULL, ...) instead of malloc in zsh-mem calloc().
2018-02-26users/23169: only expand ~[...] under the same circumstances as other ~formsPeter Stephenson2-1/+6
2018-02-2642399: document echo and behaviour of - and --Peter Stephenson2-0/+14
2018-02-2242364: _git: fix __git_ignore_line to ignore the current wordDaniel Hahler2-6/+6
Before this patch "git branch -d master<tab>" would result in "no matches found", while "master" itself should get completed here. The "(bQ)" (added in 527badc23, via 38129?!) does not seem to be necessary anymore: with files "f\[a-z\]o" and "foo", "git add f[a-z]o <tab>" offers "f\[a-z\]o", but not "foo".
2018-02-1742362: protect REPORTTIME logic from bad statusPeter Stephenson2-0/+7