summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 43227: fix memory leaks in term{cap,info}.cJun-ichi Takimoto2018-08-014-20/+50
|
* 43207: Improve _bind_addresses, _phpdana2018-07-313-66/+211
| | | | | Minor change from the patch as posted to the ML: _php now calls _bind_addresses with -K, since it can't actually listen on a link-local address.
* 43219 (except term{cap,info}.c): fix several memory leaksJun-ichi Takimoto2018-07-317-4/+17
|
* 43225: Recalculate ZLE timeout.Peter Stephenson2018-07-302-0/+7
| | | | Needed when looping owing to having handled a special fd.
* 43184: Remove reference to ftp_sites.yoMatthew Martin2018-07-292-7/+5
|
* 43185: Use [ suffix for associative arrays; add + to remove-charsMatthew Martin2018-07-292-1/+7
|
* 43203: Add completion for luadana2018-07-252-0/+65
|
* 43200: Add completion for ip6tables*Simon Ruderich2018-07-252-3/+8
|
* 43196: Add completion for nginxdana2018-07-202-0/+24
|
* 43192: _pgrep: simplify completions of list of IDsJun-ichi Takimoto2018-07-202-89/+27
|
* 43186: Add completion for cronie/dcron/Vixie crontabdana2018-07-192-0/+73
| | | | | Minor change from the patch as posted to the ML: BusyBox variant detection has been expanded to cover dcron (which BusyBox's crontab is forked from).
* 43183: fix '_ttys -o' and use it in _gdb/_pgrepJun-ichi Takimoto2018-07-194-4/+8
|
* 43189: _install: similar fix as 43187 for option -fJun-ichi Takimoto2018-07-192-1/+6
|
* 43187: Fix completion error about 'm' option of 'install' commandYasuhiro KIMURA2018-07-192-1/+6
|
* 43182: _lldb: complete process name after option -nJun-ichi Takimoto2018-07-182-2/+6
|
* 43166: new zathura completionDoron Behar2018-07-173-1/+54
|
* 43177: _grep: support bzgrep, and add a few options for macOSJun-ichi Takimoto2018-07-182-7/+18
|
* Remove ftp_sites.yo from Makefile.inPeter Stephenson2018-07-172-3/+5
|
* Update distro docs to remove dead linksMatthew Martin2018-07-174-37/+22
|
* 43176: Add note on compatibility to start of manual.Peter Stephenson2018-07-172-2/+12
| | | | Default mode is not POSIX.
* 43172: document escaping colon in zformat -aTim Smith2018-07-162-0/+6
|
* 43164: _gcc: fix 'args=' to 'args+=', and update a few optionsJun-ichi Takimoto2018-07-112-4/+11
|
* 43155: _gcc: escape ':' in action for -stdJun-ichi Takimoto2018-07-112-1/+5
|
* 43156, 43157: Need to allow for extra space in gethere().Peter Stephenson2018-07-102-3/+10
| | | | The point can now increment twice per iteration.
* users/23531: Error exit/return fixes.Peter Stephenson2018-07-093-0/+41
| | | | | | | | | | Fix regression with trap on left hand side of pipe. Fix forced return from shell structure within nested function. Fix tests exiting too early. Add new test case.
* 42995: Only complete active connections for nmcli connection downDavid Klann2018-07-072-1/+10
|
* 43046: Add mupdf completerMatthew Martin2018-07-073-1/+57
|
* 43106: Add ldap completerMatthew Martin2018-07-072-0/+91
|
* 43105: Improve pgrep/pkill completiondana2018-07-032-61/+125
| | | | | Contains minor changes to signal completion compared to the patch as originally posted
* 43134: don't complete SIG in front of numeric signalsdana2018-07-032-1/+6
|
* 43108, 43121: _killall: complete various optionsJun-ichi Takimoto2018-07-022-5/+78
|
* 43059: _gpg: Use explicit UIDs for state = public keys.Doron Behar2018-07-012-7/+60
| | | | | Use the `--with-colons` option and parse the output according to the format specified in the documentation.
* 43107: add an option to _ttys to complete only open ttysJun-ichi Takimoto2018-07-014-8/+20
| | | | Use the option in _ps and _watch-snoop
* 23519: Use tag remote-files for remote filesPeter Stephenson2018-06-293-3/+16
|
* 42746: _vim: handle special values for -u/-UDaniel Hahler2018-06-272-2/+24
| | | | This is based on state=verbosity from the same file.
* 43096: _vim: remove duplicate flagEric Cook2018-06-272-1/+4
|
* 43091: In the (u) glob qualifier, expand and correct "unknown user" error ↵Daniel Shahaf2018-06-252-2/+9
| | | | messages.
* 43084: Variable warning suppression enhancements.Peter Stephenson2018-06-254-8/+17
| | | | | | Add vared -g option along the lines of typeset -g. Set reply safely in zsh_directory_name_cdr.
* 43080: _sys_calls: analyze recent syscall.h properlyJun-ichi Takimoto2018-06-252-1/+4
|
* 43079, 43086: new utility to complete names of running processesJun-ichi Takimoto2018-06-255-0/+107
| | | | And new completions for dtruss, fs_usage and sc_usage.
* unposted: Fix mistyped variable name in _opkgdana2018-06-242-1/+6
|
* 43081: Add networksetup completiondana2018-06-232-0/+323
|
* 43088: Fix wajig sub-command completiondana2018-06-232-1/+6
|
* 43074: Completion for additional linker options for clang and sanitizers for gccEitan Adler2018-06-212-10/+14
|
* 43078: add completion for the sed expressionOliver Kiddle2018-06-212-11/+209
|
* 43073: various completion option updatesOliver Kiddle2018-06-2120-80/+209
|
* 43075: Support nanosecond-precision time formattingdana2018-06-2011-64/+116
| | | | | | | | * Teach ztrftime() %9. and %N for nanoseconds * Update prompt expansion to pass sub-second times for time formatting * Update zsh/stat to pass sub-second times for atime/mtime/ctime Patch heavily based on Oliver's earlier work @ workers/24059
* 43077: Fix shift builtin status.Peter Stephenson2018-06-202-1/+11
| | | | | If the math evaulation to get the shift count failed the status wasn't passed back from the builtin.
* 43061: Improve open (macOS) completiondana2018-06-203-19/+65
|
* 43060: Expand stat completiondana2018-06-203-33/+101
|