about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 31159: git: Pass prefix filter to ls-files even if it matches no filesTorstein Hegge2013-04-202-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a branch or tag name is completed with zsh in a large git repo, the completion is slow if the given prefix doesn't match a file or directory in the current working directory. Testing with linux.git, which contains release tags like v3.9 and a directory virt/: git log v<tab> takes about 0.5 seconds, while git log v3<tab> takes about 25 seconds. (Timed using zsh 4.3.17, on a fairly slow cpu. zsh from git appears to be quite a bit faster, but the difference between completing v and v3 is still large.) The difference between the two is that v<tab> passes the result of v* to git ls-files while v3<tab> determines that v3* matches no files, and passes an empty prefix to git ls-files. So git ls-files lists all files in the repo and passes that on to _multi_parts. Making git do the expansion of the * after the prefix lets git ls-files v3* return an empty list, making _multi_parts job easier. This does not affect the behavior of git log <tab>, but improves the performance of partial tag and branch tab-completion in the common case where file names and tag/branch names don't overlap.
* 31272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer2013-04-202-1/+4
|
* 31281: _du: add support for Mac OS XJun T2013-04-202-0/+23
|
* Daniel Friesel: 31265: improved option handling for devtodo.Peter Stephenson2013-04-162-2/+9
|
* unposted: make git ignore PDF and PS versions of intro filePeter Stephenson2013-04-132-0/+8
|
* 31263 (but changed * to - for consitency):Peter Stephenson2013-04-122-3/+7
| | | | suppress texinfo warning by giving item an argument
* 31261: updates needed with latest texinfoPeter Stephenson2013-04-123-4/+8
|
* users/17754: failing to retie an arrayPeter Stephenson2013-04-102-1/+6
| | | | and colon-separated scalar shouldn't be a fatal error
* 31246: make a separate patch level header for releasesPeter Stephenson2013-04-093-2/+12
|
* unposted: fix some .distfiles which mention files that have gonePeter Stephenson2013-04-083-2/+6
|
* unposted: fix a typo in docsMikael Magnusson2013-04-081-1/+1
|
* 31234: use an "always" block instead of "trap" to clean up various functionBart Schaefer2013-04-072-39/+39
| | | | overrides
* 31222: Stop {up,down}-line-or-beginning-search from triggering ↵Frank Terbeck2013-04-053-0/+8
| | | | | | | warn_create_global This is a followup to 30995 taking Peter's suggestions from 30997 into account.
* 31221: Handle zero defined aliases betterFrank Terbeck2013-04-052-1/+10
|
* 31175: Add documentation for the new -i and -f options of varedFrank Terbeck2013-04-052-0/+8
|
* 31172: Let vared define custom init and finish hooksFrank Terbeck2013-04-052-7/+17
| | | | | | | | | | | Using this, you can do things like this in a more straight-forward manner: foo-init() { CURSOR=0; } zle -N foo-init foo=$'Some longer\nbuffer with\nmultiple lines.' vared -i foo-init foo
* 31174: zle: Make sure state changes are refreshed after init hookFrank Terbeck2013-04-052-2/+7
| | | | | | | If `zrefresh' is not called _after_ the zle-line-init hook, any changes made to the editor's state (be it changes to $CURSOR or $BUFFER or called widgets like `clear-screen') will only be picked up after the first character is typed into the editor.
* 31203: add new etags completion.Peter Stephenson2013-04-043-0/+69
|
* Add ChangeLog entry for previous commitFrank Terbeck2013-04-031-0/+4
|
* Generate patch level using `git describe`Aaron Schrab2013-04-031-4/+4
| | | | | | | | | | | | | | Generate the patch level using `git describe` rather than relying on the CVS $Revision$. Need to use the `--tags` option, since currently there are no annotated tags. The `--long` option should be used so that the output will always be in the 'tag-commits-hash' format rather than just naming a tag when that would fully describe the current commit. Since changes to the patchlevel could now be caused by changes to any file, force the rule to be called every time that `make` is run. Only update the file when there are actually changes to prevent unnecessary rebuilding of other build products (currently just `params.o` and `zsh`).
* Jun. T: typo in vi-goto-markPeter Stephenson2013-04-022-2/+7
|
* 31182: _awk: Allow sticked argumentsMikael Magnusson2013-03-292-4/+8
|
* Han Pingtian: 31167 (with tweak): limit use of colons for recognisingPeter Stephenson2013-03-202-2/+8
| | | | remote path in ssh completion
* 31158: following a wildcard with a repetition produces a bad pattern errorBart Schaefer2013-03-192-3/+13
|
* improved math context completion: functionsPeter Stephenson2013-03-177-3/+31
|
* 31155: minor extra zcalc features and documentationPeter Stephenson2013-03-173-6/+24
|
* 31154: make zcalc understand continuation lines with a backslashPeter Stephenson2013-03-153-3/+23
|
* 31151: Pavol Juhas: complete (C etc) tags betterPeter Stephenson2013-03-142-1/+11
| | | | when file system is not case sensitive.
* 31140: avoid crash when hitting recursion limitMikael Magnusson2013-03-132-2/+8
|
* unposted: adjust another mention of psvarMikael Magnusson2013-03-132-2/+7
|
* based on 31144 etc.: all entries of psvar can now be shown in promptsPeter Stephenson2013-03-132-2/+7
|
* 31141: Tighten NO_CLOBBER restrictions on {fd} syntaxPeter Stephenson2013-03-103-2/+26
| | | | to apply only if $fd is exactly an fd and nothing else.
* 31136: vcs_info: just set parameters instead of passing over a pipeMikael Magnusson2013-03-102-13/+13
|
* 30639: Add support for showing the current action is cherry-pick to vcs_info ↵Mikael Magnusson2013-03-102-1/+16
| | | | git backend
* 30490: _java: -keystore takes a file argument, so complete filesMikael Magnusson2013-03-102-13/+16
|
* 30496: Parse argument to %F and %K as prompt sequencesMikael Magnusson2013-03-102-15/+36
|
* users/17666: zcalc -f sets FORCE_FLOATPeter Stephenson2013-03-053-2/+12
|
* users/17665: add FORCE_FLOAT optionPeter Stephenson2013-03-056-1/+53
|
* 31077: update for new options in GNU sortOliver Kiddle2013-02-272-29/+38
|
* c.f. 31071: remove duplicate _osc and rename _ps to avoid name clashOliver Kiddle2013-02-274-167/+24
|
* 31061: "functions" completion takes account of options alreadyPeter Stephenson2013-02-222-4/+28
| | | | on the command line
* 31061: "functions" completion takes account of options alreadyPeter Stephenson2013-02-221-1/+4
| | | | on the command line
* 31060:"+" before a flag for "functions" orPeter Stephenson2013-02-222-5/+15
| | | | "autoload" should suppress display of function body.
* 31058: add completion of options from newer versions of some commandsOliver Kiddle2013-02-216-65/+88
|
* 31055: missing $ in compaudit search of /proc file systemPeter Stephenson2013-02-192-2/+7
|
* unposted: Insert a blank line before vindex() to properly format theBart Schaefer2013-02-131-0/+1
| | | | paragraph that follows it.
* 31041: add support for testing line editor widgets from the test suiteOliver Kiddle2013-02-123-6/+52
|
* remove duplication in git guidelinesOliver Kiddle2013-02-122-86/+73
|
* Morita Sho: 31038: add location of terminfo entries on DebianOliver Kiddle2013-02-092-2/+5
|
* 31037: return to previous position with vi-goto-mark using `` or ''Oliver Kiddle2013-02-092-5/+18
|