summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-09-14More [key]=value tweaksPeter Stephenson6-10/+24
Some rephrasings. Update typeset -p for associative arrays to use new syntax.
2017-09-13unposted: typo in doc just committedPeter Stephenson2-1/+3
2017-09-13First go at var=([key]=value) syntax.Peter Stephenson8-34/+363
Works for both normal and typeset case, also var+=... Still to do: allow to be mixed with straight array assignment, improve typeset -p, implement [key]+=value.
2017-09-1341688: builtin wait for all jobs should ignore STAT_NOPRINTPeter Stephenson2-1/+5
2017-09-1341679: slight clarification on exec of builtinsPeter Stephenson2-1/+6
2017-09-13unposted: YODL compatibility fix for --emulatePeter Stephenson2-2/+5
2017-09-11unposted: internal: Document zreaddir().Daniel Shahaf2-0/+14
2017-09-1141666: zpty compatibility for OpenBSDThierry Ghelew2-1/+9
2017-09-1141668: New --emulate option on invocation.Peter Stephenson6-35/+153
This sets the shell emulation mode similarly to ARGV0=... which doesn't work from other shells. Note that this gives more comprehensive emulation than running emulate within the shell.
2017-09-1041662: exec -a arguments weren't sanitisedPeter Stephenson3-0/+17
2017-09-1041661: Need to remove tokens before using bufferwords() for (z)Peter Stephenson2-2/+13
2017-09-0941628 (plus 41645 by Oliver): _ps: update optionsJun-ichi Takimoto2-24/+81
also do not reset compstate[insert]
2017-09-0541641: Some math operations shouldn't be lvalues.Peter Stephenson3-8/+20
This includes pre- and post- increment and decrement. Simply mark all values after operations as rvalues.
2017-09-0441633: Fix problem backgrounding function definitions.Peter Stephenson2-1/+12
Owing to being marked as simple sublists the instruction to background was ignored. This applied to anonymous functions.
2017-09-0441621: _mkdir: Honour the 'command' and 'builtin' precommand modifiers.Daniel Shahaf2-13/+15
2017-09-0441620 (tweaked per 41622): _mkdir: Don't offer a linux-specific option in ↵Daniel Shahaf2-9/+10
the 'zsh' variant.
2017-09-0441637: add explicit objdump completionMarc Aldorasi2-2/+109
2017-09-0241623: Update FAQ.yo for Yodl 3Peter Stephenson2-23/+27
2017-08-31Make mbegin, mend, match local in zed.Peter Stephenson2-0/+6
Needed for zstyle -m.
2017-08-31Fix problem with ERR_RETURN.Peter Stephenson3-4/+43
It wasn't suppressed properly in the code following an if in some circumstances, in particular in initialsation scripts and also in a nested function where the caller had suppressed it.
2017-08-3041567: _tmux: Complete detached sessions first for attach-session.Daniel Shahaf2-1/+23
2017-08-3041566: _tmux: Complete only attached sessions for detach-session.Daniel Shahaf2-1/+11
2017-08-3041564: _tmux: Complete environment variables and their values for ↵Daniel Shahaf2-5/+98
set-environment and show-environment. Also, teach show-environment not to offer --options after positional arguments.
2017-08-3041557: _tmux: show-environment, set-environment: Make -g,-t mutually exclusive.Daniel Shahaf2-4/+7
tmux does not error out on the combination, but it does ignore one of the two when both are specified.
2017-08-3041558: _tmux: Complete option names for show-options and show-window-options.Daniel Shahaf2-6/+28
2017-08-2941608 (plus tests): restore ERR_EXIT before function.Peter Stephenson3-1/+41
There was an exception to the usual ERR_EXIT pattern that causes problems when executing a function in an else branch. It seems the exception is no longer needed as the regression tests pass without it.
2017-08-2941618: Added some arguments autocompletion to _todo.sh.Андрей Стоцкий (_RuRo_)2-0/+17
2017-08-2941617: complete new tracepath optionsOliver Kiddle3-5/+11
2017-08-2941616: update completion options to entr 3.8Oliver Kiddle2-2/+18
2017-08-29unposted: add missing #autoload directiveOliver Kiddle2-0/+7
2017-08-28unposted: Post-release version bump.Daniel Shahaf2-2/+6
2017-08-27unposted: 5.4.2Peter Stephenson2-2/+6
2017-08-27unposted: Fix changelog typo introduced by the previous commit.Daniel Shahaf1-1/+1
2017-08-2541599: info updates for 5.4.2Peter Stephenson3-7/+11
2017-08-2541602 (tweaked): Improve wording in gpg completion.William da Silva2-6/+11
2017-08-2541601: handle system differences in arp completion and add function for routeOliver Kiddle3-15/+353
2017-08-2541600: fix quoting of songs for mpc completionOliver Kiddle2-23/+91
also avoid sending errors to stderr and update completion of options and subcommands
2017-08-2541598: new who and w completionsOliver Kiddle3-0/+116
2017-08-2441590 modified as 41595: make ERR_RETURN more logical.Peter Stephenson9-20/+121
It now operates separately at each function depth. To keep ERR_EXIT global, make the noerrexit variable usd bit flags. Extend tests.
2017-08-2241565: vcs_info patch2subject: Support `svn log -r N --diff` output.Daniel Shahaf2-2/+14
2017-08-1841568: complete vmstat options on NetBSD and Solaris and add some exclusion ↵Oliver Kiddle2-23/+70
lists
2017-08-1841563: fix completion description alignment with _regex_wordsOliver Kiddle2-9/+15
2017-08-1841562: correct completed wordOliver Kiddle2-1/+3
2017-08-1841561: update dhclient completionOliver Kiddle2-22/+67
handle Free/OpenBSD implementations and bring options up-to-date for the ISC implementation
2017-08-1841560: cleanup chsh completion for different platformsOliver Kiddle2-35/+67
2017-08-17users/22834: fix irritating bug in file glob for Linux kernel modulesTomasz Pala2-1/+4
2017-08-16users/22834: allow completion after -c and a few other new ip optionsTomasz Pala2-0/+18
2017-08-1641556: complete BPF (libpcap) filtersOliver Kiddle5-156/+384
2017-08-1641552: complete only branches after git worktree add --detachOliver Kiddle2-2/+8
the --detach is superfluous for other commits
2017-08-15posted but has not shown up: fix fd problem in subshell.Peter Stephenson3-3/+33
Record fd's that have been saved in fdtable and if the shell forks close them as they will never be restored.