about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 39657: _zstyle: When completing a style for an unrecognised context, ↵Daniel Shahaf2016-10-182-1/+4
| | | | | | complete all known styles. Previously, vcs_info styles weren't completed.
* 39657: Make a helper function global.Daniel Shahaf2016-10-184-16/+30
|
* 39500: compdescribe: perform on-screen-width computation using the "nice" ↵Daniel Shahaf2016-10-162-9/+16
| | | | | | | length, since the matches are rendered by nice*() functions by compadd Remove two "###" question comments relative to the patch posted, since the answer to them is (clearly) negative.
* 39624: remove space before compdef that prevents yafc completion function ↵Oliver Kiddle2016-10-142-13/+16
| | | | being used plus other tweaks
* 39623: new evince completionOliver Kiddle2016-10-143-1/+35
|
* 39625: case needs to reset lastval if no pattern matchedMartijn Dekker2016-10-133-2/+28
|
* 39622: add test cases for recent _arguments fixes, exclusion lists and -A/-SOliver Kiddle2016-10-132-0/+96
|
* 39611: with _arguments sets completion stopped if one of the rest arguments ↵Oliver Kiddle2016-10-132-1/+5
| | | | starts with a dash
* 39533: add the new -L option, sort options and add some exclusionsMatthew Martin2016-10-132-3/+11
|
* 36108: command -[vV] assumed -pPeter Stephenson2016-10-112-2/+8
|
* 39599: Don't reset status before "case" executionPeter Stephenson2016-10-103-1/+13
|
* 39522: add-zsh-hook/add-zle-hook-widget: Promise append semantics.Daniel Shahaf2016-10-072-1/+5
| | | | | The sentence about "as widgets" is removed since there is a whole paragraph about that later on.
* 39489: _path_files: Interpret -P as literally, rather than as a pattern.Daniel Shahaf2016-10-072-1/+4
| | | | Follow-up to the last commit.
* 39479 + 39481 minus _path_files hunk (see 39489): Completion: audit 'compset ↵Daniel Shahaf2016-10-0732-42/+77
| | | | | | | | -P' calls to use shortest match where applicable, plus random drive-by tweaks. Found by grepping for patterns that can match needles of various lengths: :grep 'compset -[PS].*[\#^*()\|<>?~\]' Completion/
* 39579: Fix string calculation for parameter quoting.Julien Cretin2016-10-062-3/+7
| | | | | Where there was no closing quote the size or position of the null could be wrongly calculated.
* 39578: Test more ERR_RETURN cases with "&&" and functionsPeter Stephenson2016-10-062-0/+35
|
* 39571: Fix ERR_EXIT bug with && and function.Peter Stephenson2016-10-053-15/+31
| | | | | "foo && bar" inside a function could cause the code outside the function not to perform ERR_EXIT or ERR_RETURN when needed.
* 39568: "! <complex-command>" suppresses ERR_EXITPeter Stephenson2016-10-053-2/+37
|
* 39566: missed ChangeLogPeter Stephenson2016-10-051-0/+7
|
* 39566: Improve usefulness of command_not_found_handler.Peter Stephenson2016-10-054-15/+27
| | | | | | | Don't behave as if command not found if return status is non-zero as this may simply be the return status of the replacement command. Let the function report a command not found instead.
* 39561: missing unqueue_signals() when ZSH_HEAP_DEBUGBarton E. Schaefer2016-10-042-2/+11
|
* 39550: reset signal queue in recursiveedit()Barton E. Schaefer2016-10-032-0/+8
|
* 39548: DEBUG for queueing_enabledBarton E. Schaefer2016-10-033-3/+34
|
* 39547: handle zero delta in calc_timeout()Barton E. Schaefer2016-10-032-1/+5
|
* 39545: Add some missing unqueue_signals().Peter Stephenson2016-10-0311-4/+29
| | | | All of these are added simply to fit existing logic in other branches.
* 39521: Refactor start of execcmd().Peter Stephenson2016-10-034-55/+109
| | | | | | 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.
* 39540: "! command" should suppress ERR_EXIT and ERR_RETURNPeter Stephenson2016-10-023-2/+48
|
* 39495: add-zle-hook-widget: Add end-of-options guard to hook invocation.Daniel Shahaf2016-09-303-3/+6
| | | | Currently, the only special widget that takes arguments is zle-keymap-select.
* 39480: _reportbug: Complete absolute filenames, too.Daniel Shahaf2016-09-302-1/+7
|
* unposted: update or remove references to typeset behavior obsoleted by 35586.Barton E. Schaefer2016-09-302-8/+7
|
* 39509: in the event the current directory has been removed, use chasedots ↵Barton E. Schaefer2016-09-302-4/+26
| | | | semantics for "cd ..".
* 39519: restore missing PM_EXPORT flags.Peter Stephenson2016-09-302-0/+4
| | | | This was missing when exporting using USE_SET_UNSET_ENV coce variant.
* 39517: back off 39502 (WC_ASSIGN causes fork in pipe).Peter Stephenson2016-09-303-7/+12
| | | | This isn't a robust fix as WC_ASSIGNs simply precede the main wordcode.
* 39498: use PRIVILEGED option to decide on problematic parameter importsPeter Stephenson2016-09-303-4/+9
|
* Call the pre-redraw hook if there is text in the buffer on initMikael Magnusson2016-09-302-1/+19
|
* 39514: pass on --git-dir when calling git to get completion matchesOliver Kiddle2016-09-302-1/+3
|
* 39513: new doas completionOliver Kiddle2016-09-302-0/+20
|
* 39464: fix where lack of $state check caused unwanted filename completion ↵Oliver Kiddle2016-09-302-3/+9
| | | | for fmadm
* 39507: TMPSUFFIX for =(...)Barton E. Schaefer2016-09-293-0/+20
|
* 39470: failure to open a supposedly unique temp file name should result in ↵Barton E. Schaefer2016-09-293-5/+21
| | | | | | an error Also band-aid for signal-related race conditions in temp file name generation
* 39502: Fork for assignment in LHS of pipeline.Peter Stephenson2016-09-293-1/+12
| | | | | | | foo=bar | stuff left the value of foo set to bar as we didn't realise we needed to fork.
* unposted: Update findcmd() in Zle.Peter Stephenson2016-09-293-5/+10
| | | | Unfinished business from previous patch.
* 34943: Fixes for "command" with multiple options.Peter Stephenson2016-09-295-39/+143
| | | | | | 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.
* unposted: change '\0' to NULL to silence spurious compile warning.Bart Schaefer2016-09-281-1/+1
| | | | | | params.c:830:13: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion] *envp = '\0';
* 39463: an additional test for default system pathMartijn Dekker2016-09-282-0/+5
|
* 39460: Don't import PS4 if running as root.Peter Stephenson2016-09-283-3/+37
| | | | | 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.
* unposted: remove extra close-paren from d6a6b4ffBart Schaefer2016-09-271-1/+1
|
* 39453: new openstack completionsMarko Myllynen2016-09-272-0/+195
|
* 39369 (tweaked cf 39371): when calling an internal widget, set bindk because ↵Oliver Kiddle2016-09-272-0/+10
| | | | some widgets use it to determine how they should act
* 39437: use list_pipe_pid in assignment for clarityBarton E. Schaefer2016-09-272-2/+6
|