summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-07-1738837 (tweaked c.f. 38826): new virsh completionMarko Myllynen2-0/+58
2016-07-1738845: reset region_active before entering zleOliver Kiddle3-10/+15
It was done on exit but before zle-line-finish. Also reword documentation on region to better cover vi mode.
2016-07-1338850: Simplify indexing scheme to store hooks in the order they are addedBarton E. Schaefer2-31/+45
Also, better handling of edge cases and of autoloading/sourcing file
2016-07-1338833: separate iostat completion from _sysstatEric Cook3-26/+148
2016-07-0838812: a few new completions and update some command optionsOliver Kiddle12-43/+278
2016-07-0838810: fix cursor positioning and repeated invocations when widgets used ↵Oliver Kiddle2-9/+12
from emacs mode
2016-07-0838809: fix tracking of colour attributes and restore them when turning bold offOliver Kiddle4-7/+14
2016-07-08unposted: fix duplicated wordsOliver Kiddle5-5/+10
2016-07-0838796: Fix subword matching on last character of subword.Peter Stephenson2-1/+12
2016-07-0538780: include variants containing non alphanumeric symbols in completionarno2-2/+5
2016-07-05users/21551 (tweaked per users/21560): new git subtree completionJordan Klassen2-0/+97
2016-07-0538728: Tests: Add tests for the ':a' and ':A' modifiers.Daniel Shahaf2-1/+29
2016-07-0438783: zcalc tweaks for RPN mode.Peter Stephenson3-12/+35
Make it more straightforward to exchange variables with stack.
2016-06-2938770: vi upper/lowercase widgets and shell widget example that reads a vi ↵Oliver Kiddle7-1/+112
movement
2016-06-2938752: add comments to explain use of stdout instead of stderr for the which ↵Oliver Kiddle2-1/+7
builtin
2016-06-2738760: _git-config: Stop trying to execute the empty string command name ↵Daniel Shahaf2-1/+7
upon completing values for an unknown option. For example: % git config x.y.z <TAB> +_git-config:834> case x.y.z (alias.*) +_git-config:834> case x.y.z (remotes.*) +_git-config:860> local z=$'\C-@' +_git-config:861> declare -a parts +_git-config:862> parts=( '' ) +_git-config:863> (( 1 < 2 )) +_git-config:863> [[ x.y.z == [^.]##.*.[^.]## ]] +_git-config:864> parts=( '' ) +_git-config:866> (( 1 > 0 )) +_git-config:867> case (-\>*) +_git-config:867> case (*) +_git-config:1197> declare -a action +_git-config:1198> _description values expl '' +_git-config:1199> eval 'action=()' +(eval):1> action=( ) +_git-config:1200> '' -J values _git-config:1200: permission denied: +_git-config:1206> return ret
2016-06-25unposted: _git-config: Document some line noise.Daniel Shahaf2-0/+6
2016-06-25unposted: _git-config: Fix syntax error in 'tag.sort' completion.Daniel Shahaf2-1/+4
2016-06-2538652: test harness: Emit unified diffs instead of context diffsDaniel Shahaf2-3/+8
2016-06-2238749: fixes for case at start of a line and for ksharraysOliver Kiddle3-1/+12
2016-06-22unposted: remove flag unneded from previous fixPeter Stephenson2-2/+4
2016-06-2238746: Fix suffix alias expansion recursion.Peter Stephenson3-3/+15
This was problematic if the expansion landed you back in command position. Delay marking the alias as out of use until the text that caused the expansion is finished.
2016-06-2238714: add x: syntax to match specs to make it possible to disable match ↵Oliver Kiddle4-2/+24
specs hardcoded in completion functions
2016-06-2238735: support verbose style to allow clearer but less compact descriptions ↵Oliver Kiddle3-10/+38
for time specifiers
2016-06-2238733: completion for xfreerdpOliver Kiddle2-16/+64
2016-06-2138737: clean up zcalc variables.Peter Stephenson3-146/+163
Undocumented variables now start with "_".
2016-06-2138736: various RPN mode enhancements for zcalcPeter Stephenson5-16/+93
2016-06-2138734: fix final case clauses terminating with ;&Peter Stephenson3-1/+12
2016-06-2138692: IFS can't be changed in restricted modePeter Stephenson3-6/+11
2016-06-1938715: add-zle-hook-widget: assorted ksharrays fixes; assign an index to any ↵Barton E. Schaefer3-36/+69
hook that is added without one, to preserve append ordering
2016-06-18unposted: when ksharrays is set, braces are required for all parameter ↵Barton E. Schaefer2-1/+5
expansions with colon-modifiers
2016-06-18unposted: zed needs localoptions noksharraysBarton E. Schaefer2-0/+6
2016-06-1838713: don't add calendar matches when not immediately entering menu selectionOliver Kiddle2-1/+5
2016-06-1838707: strip suffix for glob qualifier completionOliver Kiddle4-1/+7
2016-06-1838703: support su options on macOSOliver Kiddle2-1/+5
2016-06-1638693: Add RPN mode to zcalcPeter Stephenson4-24/+160
2016-06-16unposted: fix pareentheses in man for getrusage()Peter Stephenson2-2/+6
2016-06-1638684: fix format in contrib.yoJun-ichi Takimoto2-3/+7
2016-06-1438676, 38680: Completion for pidof and localedef.Eric Cook3-0/+124
2016-06-14unposted: remove unused parameterDoug Kearns2-3/+4
2016-06-13users/21632: Use of REPORTMEMORY variablePeter Stephenson3-14/+58
If the child's resisdent set size in megabytes exceeds this, print out the resource (TIMEFMT) string. Document you need to add memory usage to this by hand.
2016-06-1338653 + 38657: 'functions -T' tracing: recurse into anonymous functions.Daniel Shahaf4-4/+32
2016-06-1338651: _git: Escape parameter arguments to _call_program.Daniel Shahaf2-7/+10
Fixes 'git cat-file blob HEAD^:<TAB>' and a few other cases.
2016-06-1338665: _git: config option completion: Quote properly.Daniel Shahaf2-2/+7
2016-06-1238670: New function for managing ZLE special widgets, modeled after ↵Barton E. Schaefer3-2/+200
Functions/Misc/add-zsh-hook.
2016-06-0938579: simplify saving and restoring of stateOliver Kiddle2-25/+22
2016-06-0938641: allow for values which resemble compadd optionsOliver Kiddle2-1/+4
2016-06-0938639: fix username completion after -, update options and get user shell ↵Oliver Kiddle2-60/+72
with getent
2016-06-0738632: remove trailing space on #compdef line for compinit parsingBarton E. Schaefer2-1/+4
2016-06-0738624: _git: Optimize the last commit's __git_recent_branches__names as ↵Daniel Shahaf2-24/+12
suggested by Matthew.