about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 40760: Always tokenize unquoted - to Dash.Peter Stephenson2017-03-0712-67/+116
| | | | | | This fixes use of pattern match character ranges in unusual contexts. Attempt to detect a tokenized - in cases where we don't care.
* 40780: Don't use =~ for simple prefix matchMikael Magnusson2017-03-072-1/+6
|
* 40726: add "zcurses resize" for sane terminal size changeSebastian Gniazdowski2017-03-054-2/+92
|
* 40781: optimize array assignment, similar to 39995 for string assignmentSebastian Gniazdowski2017-03-043-15/+117
|
* 40654: exit cleanly from special POSIXBUILTINS in subshellsBarton E. Schaefer2017-03-042-0/+6
| | | | This patch overloads the zsh_subshell counter which is meant for $ZSH_SUBSHELL, but no one has suggested a working alternate test.
* unposted (via github): complete -Dproperty=/path_complete for antChristoffer Aasted2017-03-042-1/+4
|
* unposted (via github): Add newer C++ standard options to _gccFerenc-2017-03-042-1/+4
|
* unposted: complete 'tiled' layout for tmuxOliver Kiddle2017-03-042-1/+3
|
* unposted: fix completion argument to xz --formatOliver Kiddle2017-03-042-1/+5
|
* 40715: update completion of git options for git 2.12.0Oliver Kiddle2017-03-041-8/+24
|
* 40597: be flexible about order of options to _valuesOliver Kiddle2017-03-043-6/+13
|
* 40170: Fix up error resetting in curses module.Sebastian Gniazdowski2017-03-032-23/+17
| | | | | Update comment to remove confusion. The comment was based on incorrecto expectations, and the problems referred to seem to be fixed.
* 40173: No error on failure to load zsh/db/gdbm in test.Peter Stephenson2017-03-032-1/+4
| | | | | This is a soft error causing the test to be skipped, with a report to that effect.
* 40702: new KEYS_QUEUED_COUNT ZLE variablePeter Stephenson2017-03-033-1/+24
|
* 40681: strftime builtin should return 1 if ztrftime() returns -1Jun-ichi Takimoto2017-03-022-2/+11
|
* 40622 with typos fixed: functions -Ms.Peter Stephenson2017-03-015-14/+79
| | | | | | This adds the capability for mathematical functions based on shell functions to have a string argument. Module functions have had this for a long time.
* 40562: gdbm tests omitted from previous commitSebastian Gniazdowski2017-03-012-0/+312
|
* 40641: docs: patterns: Add '|' to the overview. Clarify that it short-circuits.Daniel Shahaf2017-02-283-0/+9
|
* 40650: redo 40508 and 40626 with comments explaining what is actually going onBarton E. Schaefer2017-02-262-9/+30
|
* Revert 40626 which broke tests.Daniel Shahaf2017-02-263-6/+8
|
* 40640: the (A) parameter flag forces array result even if assignment syntax ↵Barton E. Schaefer2017-02-253-2/+29
| | | | is not used
* unposted: Port 40617 to the completion.Daniel Shahaf2017-02-252-1/+4
|
* 40626: Make $options re-settable.Daniel Shahaf2017-02-253-2/+10
| | | | | | Follow-up to 40508. Reported-by: James McGlashan
* unposted (cf. 40617): clarify description of ${(A)name=value} and ↵Barton E. Schaefer2017-02-232-5/+8
| | | | ${(AA)name=value}
* 40624: conditionally handle WIFCONTINUED to properly set SP_RUNNING process ↵Barton E. Schaefer2017-02-232-0/+10
| | | | status
* 40604: revert to the old method if getutent() is not availableJun-ichi Takimoto2017-02-233-5/+28
|
* Julien Nicoulaud: 40586: discard stderrBarton E. Schaefer2017-02-212-1/+6
|
* use "diff -a" in case special characters were written to the test outputBarton E. Schaefer2017-02-202-1/+4
|
* 40598: paramsubst() should always return scalar when PREFORK_SINGLE was passedBarton E. Schaefer2017-02-202-2/+18
|
* 40565 (tweaked): test cases for assigning array to scalar with various ↵Barton E. Schaefer2017-02-202-0/+85
| | | | combinations of SHWORDSPLIT and IFS
* 40593: SHWORDSPLIT + unset IFS should cause default splitting of $@Barton E. Schaefer2017-02-202-1/+5
|
* 40576 (tweaked): entersubsh(): unblock any signals that were blocked for ↵Barton E. Schaefer2017-02-202-3/+20
| | | | | | trap handling Also small improvement to loop that resets trap handlers
* update gphoto2 completion for new options up to gphoto2 2.5.11Oliver Kiddle2017-02-192-32/+85
|
* 40568: REMATCH_PCRE is not enabled by default, fix doc.Øystein Walle2017-02-172-1/+4
|
* 40558, 40562: General improvements to zsh/db/gdbm moduleSebastian Gniazdowski2017-02-174-72/+454
|
* 40524: do not free a null arrayBarton E. Schaefer2017-02-132-1/+4
|
* 40539: typo in MIPS branch of argument selectionFabian Klotzl2017-02-132-1/+6
|
* 40537: Document previous change to autoloadPeter Stephenson2017-02-132-1/+6
|
* 40536: Prepend directory to $fpath.Peter Stephenson2017-02-133-0/+43
| | | | | | Used if parent function is autoloaded by absolute path so as to find functions in the same suite without shell code modification.
* 40512: new entr completionOliver Kiddle2017-02-102-0/+11
|
* unposted: using a colon in the tag name for lsusb completion was not such a ↵Oliver Kiddle2017-02-102-1/+6
| | | | good idea
* 40510: vcs_info: Update the $psvar episode with '%'-unescaping. (Follow-up ↵Daniel Shahaf2017-02-093-1/+7
| | | | to 40492.)
* 40492: vcs_info: Escape '%' signs in payloads.Daniel Shahaf2017-02-096-7/+48
| | | | | Test case: a patch whose subject is '%Sfoo%sbar'. ('S' and 's' are expandos both in prompts and in the 'formats' style.)
* unposted: _svn: Fix '--show-revs' completion.Daniel Shahaf2017-02-082-1/+4
|
* 40508: Make $functions re-settable.Daniel Shahaf2017-02-083-2/+13
|
* 40507: Remove extraneous null creating GDBM recordsSebastian Gniazdowski2017-02-072-6/+11
|
* 40494: _git: Use slashes matchspec for references (as already used for ↵Daniel Shahaf2017-02-072-2/+8
| | | | branch names).
* 40493/0002: _git-checkout: Reorder default completions.Daniel Shahaf2017-02-072-2/+8
| | | | | | | | | | The unprefixed name of a remote branch is used to create a new local remote-tracking branch; that is presumed to be a rarer operation than either switching among local branches or reverting to the index version of a modified file. Between the remaining two, put modified files before tree-ishes because there are generally few of the former and many of the latter.
* 40493/0001: _git-checkout: No functional change.Daniel Shahaf2017-02-072-13/+14
| | | | This makes the next diff smaller.
* 40434: Jan Matejek: patchutils completion updatePeter Stephenson2017-02-062-2/+7
|