summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-05-20upon "read" of a short line, assign all variables passed as arguments.Barton Schaefer2-1/+6
It was noted that (print 1 2 | read one two three four) assigned values only to $one and $two except in the case where EOF was reached.
2013-05-14Improve Perforce jobs completion to limitPeter Stephenson2-4/+13
potentially huge output using jobview by default; fix quoting of arguments passed on to eval within _call_program.
2013-05-10Add .ogv to mplayer completionRichard Hartmann2-1/+4
2013-05-10Unused function attribute fix for clang compilationMihai Moldovan2-1/+6
2013-05-0531376: Make sure every execve() is prefixed by winch_unblock()Frank Terbeck2-0/+9
This was suggested by Bart Schaefer in 31375.
2013-05-05Revert "31372: Do not block SIGWINCH for child processes"Frank Terbeck2-3/+6
This reverts commit f8ab02ad5f4226e46ab54e681a3e0404fdc1a9a6. As Bart suggested in 31375.
2013-05-0531372: Do not block SIGWINCH for child processesBart Schaefer2-1/+7
Something similar may also be needed in the zpty and clone modules.
2013-05-0531371: _brctl: update brctl subcommandsKenyon Ralph2-1/+10
Add hairpin and showstp. These are available since at least bridge-utils 1.5.
2013-05-0431369: set locale for completion if locale command is not usablePeter Stephenson2-3/+15
2013-04-3031361: handle negative optno ("no" prefix used)Bart Schaefer2-4/+8
when storing options with parseopts_insert() for sticky contexts
2013-04-3031353: fix handling of floating point in ternaryBart Schaefer2-1/+4
2013-04-3031350: block SIGWINCH nearly all the time, exceptBart Schaefer1-0/+7
when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
2013-04-3031350: block SIGWINCH nearly all the time, exceptBart Schaefer5-0/+28
when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
2013-04-2931357: _cp: add support for Mac OS XJun T2-32/+64
If not GNU nor darwin, assume POSIX.
2013-04-2931356: typo in new _comp_locale noted by BartPeter Stephenson2-1/+3
2013-04-2931355: _comp_locale tries to sanitise locales but keep CTYPE;Peter Stephenson4-12/+48
use this for subversion completion.
2013-04-2531288: _git: fix shortlog completerRamkumar Ramachandra2-1/+31
Currently, __git-shortlog () says that 'git shortlog' can only accept commits as arguments (probably because the official documentation says this). This is entirely untrue: shortlog can accept commit-range-or-file, just like log can. Fix the completer by copying out segments from the __git-log () function. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2131289: _git: branch.*.pushremote, remote.pushdefaultRamkumar Ramachandra2-0/+5
The configuration variables branch.*.pushremote and remote.pushdefault are relatively new, and are currently not completed by ZSH. Fix this. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2131286: _git: add a couple of browsersRamkumar Ramachandra2-0/+7
Add google-chrome/chromium to the list of builtinbrowsers in __git_browsers (). Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2031159: git: Pass prefix filter to ls-files even if it matches no filesTorstein Hegge2-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.
2013-04-2031272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer2-1/+4
2013-04-2031281: _du: add support for Mac OS XJun T2-0/+23
2013-04-16Daniel Friesel: 31265: improved option handling for devtodo.Peter Stephenson2-2/+9
2013-04-13unposted: make git ignore PDF and PS versions of intro filePeter Stephenson2-0/+8
2013-04-1231263 (but changed * to - for consitency):Peter Stephenson2-3/+7
suppress texinfo warning by giving item an argument
2013-04-1231261: updates needed with latest texinfoPeter Stephenson3-4/+8
2013-04-10users/17754: failing to retie an arrayPeter Stephenson2-1/+6
and colon-separated scalar shouldn't be a fatal error
2013-04-0931246: make a separate patch level header for releasesPeter Stephenson3-2/+12
2013-04-08unposted: fix some .distfiles which mention files that have gonePeter Stephenson3-2/+6
2013-04-08unposted: fix a typo in docsMikael Magnusson1-1/+1
2013-04-0731234: use an "always" block instead of "trap" to clean up various functionBart Schaefer2-39/+39
overrides
2013-04-0531222: Stop {up,down}-line-or-beginning-search from triggering ↵Frank Terbeck3-0/+8
warn_create_global This is a followup to 30995 taking Peter's suggestions from 30997 into account.
2013-04-0531221: Handle zero defined aliases betterFrank Terbeck2-1/+10
2013-04-0531175: Add documentation for the new -i and -f options of varedFrank Terbeck2-0/+8
2013-04-0531172: Let vared define custom init and finish hooksFrank Terbeck2-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
2013-04-0531174: zle: Make sure state changes are refreshed after init hookFrank Terbeck2-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.
2013-04-0431203: add new etags completion.Peter Stephenson3-0/+69
2013-04-03Add ChangeLog entry for previous commitFrank Terbeck1-0/+4
2013-04-03Generate patch level using `git describe`Aaron Schrab1-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`).
2013-04-02Jun. T: typo in vi-goto-markPeter Stephenson2-2/+7
2013-03-2931182: _awk: Allow sticked argumentsMikael Magnusson2-4/+8
2013-03-20Han Pingtian: 31167 (with tweak): limit use of colons for recognisingPeter Stephenson2-2/+8
remote path in ssh completion
2013-03-1931158: following a wildcard with a repetition produces a bad pattern errorBart Schaefer2-3/+13
2013-03-17improved math context completion: functionsPeter Stephenson7-3/+31
2013-03-1731155: minor extra zcalc features and documentationPeter Stephenson3-6/+24
2013-03-1531154: make zcalc understand continuation lines with a backslashPeter Stephenson3-3/+23
2013-03-1431151: Pavol Juhas: complete (C etc) tags betterPeter Stephenson2-1/+11
when file system is not case sensitive.
2013-03-1331140: avoid crash when hitting recursion limitMikael Magnusson2-2/+8
2013-03-13unposted: adjust another mention of psvarMikael Magnusson2-2/+7
2013-03-13based on 31144 etc.: all entries of psvar can now be shown in promptsPeter Stephenson2-2/+7