summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-05-01_git: Fix an apparent typo in __git_heads().Daniel Shahaf1-2/+2
I couldn't reproduce different behaviour with and without this patch, although the called command's output differs.
2016-05-01_git: Offer alternatives properly.Daniel Shahaf1-2/+1
2016-05-01_git-bundle: Complete required file argument to 'git bundle' correctly.Daniel Shahaf1-0/+1
2016-04-29unposted: silence spurious compiler warningBarton E. Schaefer2-1/+3
2016-04-2938358: "fgrep --" for noatime check in case a mount point is named "-"Barton E. Schaefer2-1/+6
2016-04-2938356: allow integers as curses coloursSebastian Gniazdowski3-4/+23
2016-04-2939354: zcurses fix for colour managementSebastian Gniazdowski2-4/+9
Alter internal return code so as not to mask curses error code.
2016-04-2638350 (cf. Glenn Smith: 38348): Remove-all warning should warn about the ↵Barton E. Schaefer2-2/+7
root directory as well
2016-04-2338316: _git-rebase: Complete any committish for the second argumentDaniel Shahaf2-1/+6
2016-04-2338291: Change names of ISEARCH_* parameters to ISEARCHMATCH_*m0viefreak3-22/+27
2016-04-23Mikael Berthe: 38307: PCRE segfault when parenthesized group matches nothingBarton E. Schaefer3-1/+15
unposted: regression test for 38307
2016-04-2238306: in printf formats, treat a missing precision as zero rather than as ↵Barton E. Schaefer2-1/+7
unlimited
2016-04-1538289: "builtin enable" in $_comp_setup to avoid accidentally invoking ↵Barton E. Schaefer2-4/+9
external command of the same name
2016-04-1438219: remove redundant left square bracketHan Pingtian2-1/+4
2016-04-1438287: fix position for the end of a visual selection range for the cursor ↵Oliver Kiddle2-1/+4
on an empty last line in the buffer
2016-04-1438286: cursor correction following yank-pop is only applicable to vi command ↵Oliver Kiddle2-1/+6
mode
2016-04-1437847: update du arguments up to GNU du 8.25Christian Neukirchen2-2/+6
2016-04-10m0viefreak: 38264: improve doc for 38145m0viefreak2-4/+9
2016-04-09For help listing, capture the fallback to compctl in case there is one definedBarton E. Schaefer2-1/+7
2016-04-0938255: _git: Fix argument pastedness.Daniel Shahaf2-43/+47
Found by searching for /-\w\>.*:/. This covers short options only, from the top of file through _git-tag().
2016-04-0738248: fix word position calculation when completing on or just before a ↵Barton E. Schaefer3-3/+28
redirection operator The completion result is still in need of some repair; e.g., if the first thing on the line is the redirection, completion before it is not taken to be in command position, and in this and other cases a necessary space is not inserted between the completed word and the redirection.
2016-04-0538229: fix cursor placement calculation when completing in empty double quotesBarton E. Schaefer2-1/+13
2016-04-0438241: ungetkeycmd() needs to unmetafy key string.Peter Stephenson2-7/+17
Use the new function to simplify memory management in prefix handling. Third time lucky.
2016-04-0438236: Order of redirections is important.Peter Stephenson1-0/+19
2016-03-26Dmitry Marakasov: 38162: accept G for gigabytes in limit commandBarton E. Schaefer3-2/+9
from github pull request - some formatting edited
2016-03-2138191: additional re-entrancy checks in reexpandprompt()Barton E. Schaefer2-8/+34
Do not free global pointers until after promptexpand() in case they are referenced from signal handlers, and check for window size changes during promptexpand().
2016-03-2138188: signal re-entrancy, maybeBarton E. Schaefer2-38/+54
Crams several globals into a struct so they can be saved/restored as one, and then tries pushing the signal queue management down into patmatch() from pattryrefs().
2016-03-2138142: signal re-entrancy, maybeBarton E. Schaefer2-5/+23
2016-03-21Remove unnecessary filePeter Stephenson1-30/+0
2016-03-2138182: _git: Invoke reflog completion from the 'complete commit objects' ↵Daniel Shahaf2-3/+13
codepath. The reflog will only be used if the user has typed as "@" by hand.
2016-03-2138181: _git reflog: Complete '@{N}' instead of 'HEAD@{N}'.Daniel Shahaf2-0/+4
The «HEAD@{...}» syntax is no longer completed, since it's not easily possible to support both syntaxes (workers/34768).
2016-03-2138180: _git: Improve reflog completion.Daniel Shahaf2-2/+6
Currently, only used by «git reflog delete <TAB>».
2016-03-2138145: ZLE parameters for isearch and completion suffixesm0viefreak4-0/+121
2016-03-1938187: _adb: Just check current dir instead of recursivelyMikael Magnusson2-26/+15
Thanks to LambdaComplex in IRC for help with troubleshooting.
2016-03-1938186: _adb: fix remote file completion + various fixesMikael Magnusson2-46/+36
2016-03-18unposted: Document run-help-* helper functions.Daniel Shahaf2-3/+25
2016-03-1838179: _adb: Fix completion by mostly reverting 35531Mikael Magnusson2-28/+45
2016-03-1638161: _tmux: Use a colon to terminate options to _arguments itselfFrank Terbeck2-79/+84
In users/21384 it was reported that % tmux new-session -<tab> ...does not offer -A as a candidate for completion even though the option is listed in the involved helper function _tmux-new-session(). -A is actually an option the _arguments function uses itself. The documentation states: To avoid ambiguity, all options to _arguments itself may be separated from the spec forms by a single colon. This commit changes each _arguments call to include the optional colon, so problems like this are prevented now and hopefully in the future.
2016-03-1538155: docs: compsys: Clarify documentation of the 'filter' style.Daniel Shahaf2-1/+7
2016-03-1538151: _git: fix tag name of remote branchesm0viefreak2-1/+4
2016-03-1538148: _git: reflog: complete references next to commandsm0viefreak2-1/+8
'git reflog show' is the default subcommand, so git reflog <tab> should complete subcommands and references.
2016-03-1138135: internal: bin_compadd: Add a few comments.Daniel Shahaf2-0/+6
2016-03-1138129: _git: Fix __git_ignore_line's treatment of shell and pattern ↵Daniel Shahaf2-3/+8
metacaracters. Builds upon a patch by Jun T. Also upgrade/fix __git_pattern_escape.
2016-03-1038128: _git: Fix completion of diffs against the index when treeish isn't ↵Daniel Shahaf2-1/+5
shell-safe This affects 'git diff --cached -- <TAB>' and 'git reset $treeish <TAB>'.
2016-03-1038123 (after 38074): _git reset $treeish: complete only staged filesDaniel Shahaf2-36/+25
2016-03-09unposted: ChangeLog: credit Martijn Dekker for workers/38039 (POSIXy 'set +o')Daniel Shahaf1-1/+1
2016-03-0938120: _git: Document the internal helper function __git_ignore_line.Daniel Shahaf2-0/+15
2016-03-0938114: Fix hang using ^Z with command subst.Peter Stephenson2-2/+16
In subshells started to perform substitutions disable signals that require interactive handling.
2016-03-09unposted: update .gitignore for 38108Jun-ichi Takimoto2-0/+8
2016-03-0838108: enable to create both zsh_{a4,us}.pdfJun-ichi Takimoto5-25/+50
Default paper size is taken from LC_PAPER. Stop to check for pdfetex (obsolete and redundant).