summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-02-0842333: git 2.16.0 no longer accepts an empty string as a pathspec element so ↵Christian Hesse2-1/+5
replace empty strings with a dot
2018-02-0842330: ln -L and -P are POSIX, but not supported by Darwin or NetBSDMatthew Martin2-20/+37
2018-02-0742336: force single column output when getting filenames with adb ls commandWGH2-1/+4
2018-02-0742343: complete --config-option to svn more than onceOliver Kiddle2-10/+39
2018-01-31Fix confusing change log entry for foregoing commit.Peter Stephenson1-1/+1
2018-01-3142332: Special case unsigned printf formats.Peter Stephenson3-1/+71
For constants we can avoid a conversion to signed by examining the expression before passing to math eval.
2018-01-24Add ChangeLog entry for previous commitDaniel Hahler1-0/+5
2018-01-2442323: _git: move "local" statement out of loopDaniel Hahler1-2/+2
Fixup for 99cf61fd4.
2018-01-2442322 (tweaked): Fix interactive_comments history with just a coment.Peter Stephenson3-1/+20
Don't discard the line from the history merely because it produced no synactic words.
2018-01-2342313: avoid null-pointer deref when using ${(PA)...} on an empty array resultJoey Pabalinas2-1/+6
2018-01-2342317: completion option updates for commands that have had recent updatesOliver Kiddle14-156/+225
2018-01-2342299: correct optional argumentOliver Kiddle2-1/+3
2018-01-2342309: A few small updates for OpenBSDMatthew Martin4-8/+19
2018-01-2242305: CVS should be gitDaniel Tameling2-1/+5
2018-01-21Fix overlapping commitsBarton E. Schaefer2-1/+39
2018-01-2042243: Free stuff properly in zsh/pcre moduleMikael Magnusson2-1/+39
2018-01-1941924: (wi) subscript flag interactiondana2-2/+6
2018-01-19ChangeLog for abd00402 / 41839Barton E. Schaefer1-0/+5
2018-01-1941839: force IFS to default for "read"Sebastian Gniazdowski1-1/+1
2018-01-1842294: disable REPORTTIME in completionPeter Stephenson2-1/+7
2018-01-1642285: off by one fix in multiple promptsWarepire2-1/+5
2018-01-1442136: empty string check in %~ / %C prompt expansionsBarton E. Schaefer2-1/+3
2018-01-1442043: ZSH_DEBUG_CMD should not WARN_CREATE_GLOBALBarton E. Schaefer2-1/+7
2018-01-13Fix last commit's ChangeLog.Daniel Shahaf1-1/+1
2018-01-13unposted: Follow-up to previous: Clarify that ${histchars[1]} may be ↵Barton E. Schaefer2-2/+6
backslash-escaped even when it isn't '!'.
2018-01-1342261: docs: Expand documentation of $histchars[1]. Joint with Matthew Martin.Daniel Shahaf3-5/+14
2018-01-1042242: add [DFNO]BSD to the mix in ldconfig completionMatthew Martin3-35/+86
2018-01-0842245: Abort last word on interactve comment.Peter Stephenson4-1/+29
Last recorded word should be the previous one.
2018-01-0642231: new completion functions for simple utilities belonging to the ↵dana17-1/+528
'Darwin' and 'Linux' groups.
2018-01-0542230: update screen completion to 4.06.01Oliver Kiddle2-1/+5
2018-01-0542229: update completion of GNU programs for coreutils 8.29 / gawk 4.2.0Oliver Kiddle7-4/+14
2018-01-0542223: new completions for sublime text and some basic Unix utilitiesdana6-0/+224
2018-01-0542221: update enscript completion for GNU enscript 1.6.6Oliver Kiddle2-69/+119
2018-01-0542222: _object_files: recognize .dylib (macOS)dana2-1/+6
2018-01-0442164: fix digits in format escapes in completion listingsdana3-3/+21
2018-01-04Avoid crash copying empty hash table.Stephane Chazelas2-4/+9
Visible with typeset -p.
2018-01-0442188: Close flock descriptor in failure casesSebastian Gniazdowski2-3/+16
2018-01-0442214: use less general names on new functions for completing file flags and ↵dana7-4/+10
modes
2018-01-04github #21: update nmcli completions to be compatible with recent version 1.8.4Maciek Makowski3-244/+379
2018-01-0442210: factor out completion of file modes and flags and handle ↵dana7-89/+119
_comp_priv_prefix for chflags
2018-01-0442209: take account of numeric options such as -4 instead of -t4dana2-0/+7
2018-01-0442209: fix option descriptions for non-GNU variants of trdana2-1/+4
2018-01-0342208: fix use of cache variables in yp completionOliver Kiddle2-14/+18
2018-01-0342207: support g prefixes for GNU variants on systems like macOS+Homebrewdana17-16/+26
2018-01-0342117: use anonymous function rather than define one in user namespaceMatthew Martin2-40/+49
2018-01-0242171: prevent parameters of various parameters from becoming globalEric Cook19-17/+41
2017-12-3142183: _objdump: support LLVM variantJun-ichi Takimoto2-4/+78
2017-12-3042186: _apt: Fix completion of target_release names, e.g., 'apt install ↵Daniel Shahaf2-1/+4
zsh/<TAB>'. When local-apt-repository is installed, 'apt-cache policy' contains . 100 /var/lib/dpkg/status release a=now 500 file:/var/lib/local-apt-repository ./ Packages release o=local-apt-repository,c= . which was matched by the pattern being patched.
2017-12-30unposted: vcs_info: Add docstrings to the internal functions ↵Daniel Shahaf3-1/+14
VCS_INFO_formats and VCS_INFO_set.
2017-12-2842175 + 42177 + 42178: avoid localized output from external commandsJun-ichi Takimoto8-19/+62
_call_program and '_arguments --' will call _comp_locale before calling external command for easier analysis of the output. This is disabled by passing an option '-l'.