summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-08-08users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson4-1/+25
Update ZLE version if history is read, pushed or popped with ZLE active
2013-08-0731634: run-help compat with alias to noglob/nocorrectPhil Pennock2-0/+9
Given `alias fetch='noglob fetch'`, without this change `run-help fetch` recurses to invoke itself on the noglob command, bringing up the help for noglob. Similarly for nocorrect. Thus the user would have to quit out of the pager, then avoid quitting out of the loop, so that they can go into the second iteration and see the help for the second instance found by `whence -a`, which happens to be the target of the alias. With common pagers, that's thus 'q', 'not-q'. Somewhat frustrating. Without this change, `alias foo='noglob bar'` where `foo` is not otherwise a command would _never_ show the help for `bar`, since it only showed the help for `noglob` and there was no second line of whence output to trigger the second pass. With this change, aliases to `noglob|nocorrect` of a command somewhat ignore the presence of that precommand modifier; if a command is aliased to `noglob $itself`, then the result is that the first line of whence output is shown, no pager is used, the user can immediately see a prompt to continue and press something other-than-q to see the help for the command. If given `alias foo='noglob bar'` then `run-help foo` will immediately show the help for bar. This behaviour was chosen to be consistent with the existing alias support, but just working better with the precommand modifier.
2013-08-0531631: Use cygwin_conv_path if available.Peter Stephenson3-1/+12
Prefer it to cygwin_conv_to_posix_path.
2013-08-04suppress stderr when listing java classes to completeYuusuke Yoshimoto2-1/+6
2013-08-0231611: attempt to fix crash completing redirection in do loopPeter Stephenson2-2/+29
2013-08-01mplayer supports .ts (transport stream) filesThomas Klausner2-1/+6
2013-07-2917591: fix error message for invalid fd in print -uPeter Stephenson2-8/+13
2013-07-2831592: improve documentary for handling of named directories.Manuel Presnitz4-12/+23
Minor changes of phrasing.
2013-07-2531756: further make completion improvements.Jun T2-32/+49
ake care of mutually exclusive options. Add _description using $state_descr. Add completions for --debug=flag. Fix typo (pointed out by Daniel Shahaf).
2013-07-2531574: alternative fix for bad fd if no FD_CLOEXEC.Peter Stephenson2-8/+21
Remove dump records more consistently in that case.
2013-07-2431572: Completion/Debian/Command/_linda: DeletedRichard Hartmann3-27/+3
2013-07-2431571: Completion/Unix/Command/_vcsh: UpdateRichard Hartmann2-16/+137
2013-07-2431750: fix for HISTREDUCEBLANKS option.Peter Stephenson2-2/+33
Don't truncate line after marked words if there's more non-white-space text, which is probably comments.
2013-07-22unposted: fix previous commit: ihwend -> hwendPeter Stephenson2-1/+4
2013-07-2231559: Fix history line problem with aliases and commentsPeter Stephenson2-0/+4
2013-07-2231558: name of qemu executable changed in completion.Eric Cook2-3/+8
2013-07-2131549: Fix third problem with file descriptor management.Peter Stephenson3-18/+6
Replace ad-hoc subsh_close file descriptor for pipe management with the new job-based addfilelist() mechanism.
2013-07-2031545: Use of FD_CLOEXEC to remove possibility of fd reuse.Peter Stephenson3-0/+15
File descriptors of mmap'd dump files are closed if and only if an exec is performed.
2013-07-19c.f. 31531: complete xcf files for image manipulation packagesPeter Stephenson3-2/+7
2013-07-1931536 with additions: Fix hang in previous process substitution fix.Peter Stephenson3-0/+40
Close applicable file descriptors when waiting for a job.
2013-07-1731528: use job table to record file descriptors associated with process substPeter Stephenson4-35/+63
2013-07-1731525: Fix some options in _makeJun T2-4/+9
2013-07-12Update make completion with gnu optionsNick Cross2-8/+35
2013-07-11users/17856: rewrite _make to use _arguments.Peter Stephenson2-10/+39
No new option handling yet, but this should make it easier to add.
2013-07-0331503: zmv improvements for user-specified programs.Peter Stephenson3-6/+25
-p splits words of commands passed to it. -P is like -p for when the program doesn't understand the -- convention
2013-06-2831500: Completion/Debian/Command/_dput: dput-ng completion support from ↵Clint Adams2-16/+48
Sebastian Ramacher.
2013-06-2831499: dcut completion from Sebastian Ramacher.Clint Adams2-0/+163
2013-06-28mail went throughClint Adams1-1/+1
2013-06-2831xxx: Completion/Debian/Command/_dak: complete files for subcommands that ↵Clint Adams2-0/+9
are not explicitly specified.
2013-06-2731483: Call zrefresh() before unqueue()ing signalsMikael Magnusson2-0/+7
Not doing so causes problems for example with this .zshrc zle -N zle-line-init foo zle -N set-local-history bar foo() { zle set-local-history -n 1 } bar() { zle reset-prompt }
2013-06-1831485: vcs_info, git: Avoid error messages for `guilt' usersFrank Terbeck2-1/+8
Guilt uses the same internal directory for keeping state as stgit, but it doesn't use the same files (not surprisingly). This caused error messages due to missing files. This fixes that by making the "stgit-active?" test stricter. Reported-by: Axel Beckert <abe@debian.org>
2013-06-17Orphaned ChangeLog notes that should have been committed earlierPeter Stephenson1-0/+8
2013-06-1331465: fix basic completion and globbing uses of disabled patternsPeter Stephenson4-36/+87
2013-06-1331444: Basic code for enable/disable -pPeter Stephenson8-12/+313
2013-06-1331474: create patchlevel.h correctly when using a separate build treeBarton E. Schaefer3-2/+7
2013-06-10move comment to individual line in .editorconfigHong Xu1-1/+3
2013-06-1031459: fix alignment of zsh entry in info menuBruce Stephens1-1/+1
2013-06-1031205: Do not display "(eval)" as a tag contextBarton E. Schaefer2-1/+4
2013-06-0931466: Cause git and cvs to ignore one another, in case anyone wants toBarton E. Schaefer3-0/+9
import this tree into a CVS repository.
2013-06-0131441: use array to decide which forms of pattern are enabledPeter Stephenson4-91/+182
2013-05-3031436: document KSH_GLOB doesn't support recursive directoriesPeter Stephenson3-2/+21
2013-05-2931433: zcat -f doesn't need suffix .gzPeter Stephenson2-1/+8
2013-05-2931422: better heuristic for timestamps in age functionPeter Stephenson3-4/+20
2013-05-2231405: weasel words about PRINT_EXIT_STATUS option.Peter Stephenson2-0/+6
2013-05-2131419: Add time zone and year to string formatted time output from zstatPeter Stephenson2-2/+5
2013-05-2131418: improve documentation for "age" functionPeter Stephenson3-3/+15
2013-05-21Omitted ChangeLog entry for previous commitPeter Stephenson1-0/+5
2013-05-21Fix mergePeter Stephenson2-4/+4
2013-05-2131417: age function needs protection against file names starting "-"Stephane Chazelas2-3/+8
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.