summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2016-10-0439561: missing unqueue_signals() when ZSH_HEAP_DEBUGBarton E. Schaefer1-0/+4
2016-10-0339550: reset signal queue in recursiveedit()Barton E. Schaefer1-0/+2
2016-10-0339548: DEBUG for queueing_enabledBarton E. Schaefer1-0/+2
2016-10-0339547: handle zero delta in calc_timeout()Barton E. Schaefer1-0/+4
2016-10-0339545: Add some missing unqueue_signals().Peter Stephenson1-0/+5
All of these are added simply to fit existing logic in other branches.
2016-10-0339521: Refactor start of execcmd().Peter Stephenson1-0/+6
By splitting into _analyse and _exec execpline2() has easier access to the state at the start of execution. Use this to ensure we fork if this is a builtin with no arguments.
2016-10-0239540: "! command" should suppress ERR_EXIT and ERR_RETURNPeter Stephenson1-0/+5
2016-09-3039495: add-zle-hook-widget: Add end-of-options guard to hook invocation.Daniel Shahaf1-0/+3
Currently, the only special widget that takes arguments is zle-keymap-select.
2016-09-3039480: _reportbug: Complete absolute filenames, too.Daniel Shahaf1-0/+5
2016-09-30unposted: update or remove references to typeset behavior obsoleted by 35586.Barton E. Schaefer1-0/+3
2016-09-3039509: in the event the current directory has been removed, use chasedots ↵Barton E. Schaefer1-0/+5
semantics for "cd ..".
2016-09-3039519: restore missing PM_EXPORT flags.Peter Stephenson1-0/+3
This was missing when exporting using USE_SET_UNSET_ENV coce variant.
2016-09-3039517: back off 39502 (WC_ASSIGN causes fork in pipe).Peter Stephenson1-0/+2
This isn't a robust fix as WC_ASSIGNs simply precede the main wordcode.
2016-09-3039498: use PRIVILEGED option to decide on problematic parameter importsPeter Stephenson1-0/+5
2016-09-30Call the pre-redraw hook if there is text in the buffer on initMikael Magnusson1-0/+6
2016-09-3039514: pass on --git-dir when calling git to get completion matchesOliver Kiddle1-0/+2
2016-09-3039513: new doas completionOliver Kiddle1-0/+2
2016-09-3039464: fix where lack of $state check caused unwanted filename completion ↵Oliver Kiddle1-0/+5
for fmadm
2016-09-2939507: TMPSUFFIX for =(...)Barton E. Schaefer1-0/+2
2016-09-2939470: failure to open a supposedly unique temp file name should result in ↵Barton E. Schaefer1-0/+6
an error Also band-aid for signal-related race conditions in temp file name generation
2016-09-2939502: Fork for assignment in LHS of pipeline.Peter Stephenson1-0/+3
foo=bar | stuff left the value of foo set to bar as we didn't realise we needed to fork.
2016-09-29unposted: Update findcmd() in Zle.Peter Stephenson1-0/+3
Unfinished business from previous patch.
2016-09-2934943: Fixes for "command" with multiple options.Peter Stephenson1-0/+7
These need to combine properly, and alos "command -p" with either -v or -V needs to search for builtins and then using the default system path.
2016-09-2839463: an additional test for default system pathMartijn Dekker1-0/+3
2016-09-2839460: Don't import PS4 if running as root.Peter Stephenson1-0/+6
There was an exploit in bash using SHELLOPTS to turn on xtrace, however this can't happen in zsh, so this is simply a precaution.
2016-09-2739453: new openstack completionsMarko Myllynen1-0/+3
2016-09-2739369 (tweaked cf 39371): when calling an internal widget, set bindk because ↵Oliver Kiddle1-0/+6
some widgets use it to determine how they should act
2016-09-2739437: use list_pipe_pid in assignment for clarityBarton E. Schaefer1-1/+5
2016-09-2639448: reset REPLY in select on user actionMartijn Dekker1-0/+5
2016-09-2539436: Pass on status of SIGINT better.Peter Stephenson1-0/+3
Set lastval to 128 + SIGINT on interrupt. Don't execute builtin if already interrupted at that point.
2016-09-2539435: Further fix for pgrp of funny pipelines.Peter Stephenson1-0/+5
Don't set gleader of SUBJOB at the point of creation if the SUPERJOB has no processes yet.
2016-09-2439423: _zed: Support the '--' end-of-options mark.Daniel Shahaf1-0/+3
This matters for fned'ing vcs_info hooks.
2016-09-2439423: vcs_info git: Produce nicer applied-string messages for 'exec' actions.Daniel Shahaf1-0/+6
This changes the behaviour on "unknown" git-rebase actions (those other than pick/reword/edit/fixup/squash/execute).
2016-09-2339412: Fix directory completion when $PWD:h contains parentheses, which are ↵Daniel Shahaf1-0/+6
interpreted as globbing metacharacters.
2016-09-2239410: Fix unintentional history modifiers.Daniel Shahaf1-0/+6
2016-09-22unposted: _gpg: Correct typoAdam Gibbins1-0/+4
Received via github (pull request #9).
2016-09-21unposted: add missing final colon in zstyle context lookupBarton E. Schaefer1-0/+3
2016-09-21users/21955: add missing final colon in zstyle context lookup; allow a ↵Barton E. Schaefer1-0/+6
single unique match to appear in "expansions" tag
2016-09-2139370: complete -w and -K options to zle following the widget name and ↵Oliver Kiddle1-0/+4
numeric base to integer
2016-09-2139407: cleanup minor issues in cpupower completion; updated through to ↵Oliver Kiddle1-0/+5
version 4.8
2016-09-2039385: _bts: Complete more argument types for 'cache' and 'show'.Daniel Shahaf1-0/+3
2016-09-2039383: compadd: Restrict previous patch to the case where $PREFIX includes ↵Daniel Shahaf1-0/+4
characters both from the -P prefix and from the (unprefixed) candidate completion word.
2016-09-2039372: compadd: Match -P prefix all-or-nothing rather than greedily.Daniel Shahaf1-0/+5
2016-09-1939381: handle save/restore of variable values when "typeset"-related ↵Barton E. Schaefer1-0/+5
reserved words are prefixed by an assignment
2016-09-19bracketed-paste-url-magic: Handle magnet links too, and allow for schemes ↵Mikael Magnusson1-0/+5
without //
2016-09-1839374: _apt: Complete package versions in the 'packagename=<version>' syntax.Daniel Shahaf1-0/+5
2016-09-1739356 (tweaked, c.f. Bart 39358): Etc/BUGS: Remove fixed items, add 'compset ↵Daniel Shahaf1-0/+5
-q' item from workers/39306. The first removed hunk is fixed by ZLE_RPROMPT_INDENT. The next two removed hunks work (on my system, anyway) with current master.
2016-09-1639362: another race with pipeline handling.Peter Stephenson1-0/+5
When forking the shell to control the right hand side, the forked subshell now always starts its own process group, to avoid getting a spurious additional SIGSTOP.
2016-09-1639359: Fix remaining race with orphaned subjob.Peter Stephenson1-0/+4
When shell is forked to run right hand side of pipieline it should use its own PID as process group if the left hand side of the pipeline has already exited.
2016-09-1639331: Reparent subjob on fork with exited superjob.Peter Stephenson1-0/+7
Fixes case of v() { { vim - } always { true } } ls | v ^Z fg Tentative fix: still a race at exit where zsh forked by ^Z is stopped when restarted.