summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2013-09-2231752: _git: change completion text for consistencyØystein Walle1-0/+5
2013-09-2231753: _git: correct some "undocumented" optionsm0viefreak1-0/+5
diff options: --cumulative is deprecated --> remove -G / -S: reword -S to emphase the difference to -G revision options: --abbrev: reword, to emphase the --abbrev-commit requirement
2013-09-2231751: _git: remove TODOs of actually documented optionsØystein Walle1-0/+3
No functional changes.
2013-09-2231749: _git: fix some typos in description textsØystein Walle1-0/+5
2013-09-2231748: _git: support completing remote branches without <remote>/ prefixm0viefreak1-0/+3
this is used in git 1.8's git checkout <branch> as a shorthand for git checkout -b <branch> --track <remote>/<branch> in case <branch> exists on exactly one remote and is not a local branch
2013-09-2231746: _git: reword _git-config TODOm0viefreak1-0/+5
Support for merge drivers, filter drivers, and diff drivers is missing.
2013-09-2231750: _git: add new configuration options to match latest git v1.8.3Øystein Walle1-0/+3
2013-09-2231747: _git: completion updates to match latest git v1.8.3 part 2Øystein Walle1-0/+5
2013-09-2231755: _git: completion updates to match latest git v1.8.3m0viefreak1-0/+3
2013-09-2231745: _git: correctly use __git_guard_number in some casesm0viefreak1-0/+3
The space is relevant to make the help text work as intended.
2013-09-2231744: _git: make git submodule <cmd> completion workm0viefreak1-0/+3
The -A parameter in the main completion stopped completion in the subcommands from working. Remove it.
2013-09-2231743: _git: fix usage of ->int: for some entries in _git-configm0viefreak1-0/+3
2013-09-2231741: _git: fix a wrong variable in __git_config_valuesm0viefreak1-0/+5
This probably was a copy/paste mistake.
2013-09-21unposted: improve an error message.Barton E. Schaefer1-0/+4
2013-09-1931737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer1-0/+4
2013-09-1931735: fix off-by-one in completion utility cache code.Axel Beckert1-0/+6
Was causing crashes in complex completions, particularly with taskwarrior
2013-09-1431726: _git: add few more arguments for cherry-pick and revertLuka Perkov1-0/+3
Signed-off-by: Luka Perkov <luka@openwrt.org>
2013-09-1431723: _systemd: add more system commandsLuka Perkov1-0/+5
While at it move suspend command so the order of the sytem commands equals the one in the systemd help. Signed-off-by: Luka Perkov <luka@openwrt.org>
2013-09-1031714: handle ".." properly when $PWD or the path prefix traverses a ↵Barton E. Schaefer1-0/+5
symbolic link.
2013-09-08conflict resolutionPeter Stephenson1-0/+5
2013-09-0831711: add execute-never style for MIME function system.Peter Stephenson1-0/+6
Allows alien file systems to be marked as not having executable fiels
2013-09-0731708: _git: add --fixup and --squash options to commitLuka Perkov1-0/+5
Signed-off-by: Luka Perkov <luka@openwrt.org>
2013-09-0631702: check for git rebase -i for autosquashLuka Perkov1-0/+3
2013-09-0631706: standardize handling of "test ! <x> <y> <z>"Peter Stephenson1-0/+5
2013-09-0631658: fix manual entry about getting lines from mapfilePeter Stephenson1-0/+5
2013-09-0431696: In "test" No One Can Hear If You Shriek.Peter Stephenson1-0/+6
Treat ! as a string in "test ! -a ..." and "test ! -o ...".
2013-08-29users/17955: new "disown" style for MIME handlers.Peter Stephenson1-0/+4
Makes handlers put into the background run without job control.
2013-08-29based on 31641, 31642: completion for more make variantsPeter Stephenson1-0/+5
2013-08-2631672: Add test that was failing and fix zpty set-up racePeter Stephenson1-0/+5
2013-08-26Update ChangeLog entry with mailing list reference.Peter Stephenson1-2/+2
2013-08-2531665: zpty should attach terminal on slave.Peter Stephenson1-0/+5
Also add test.
2013-08-1831637: be more selective about retry of lchdir() in cd_do_chdir()Barton E. Schaefer1-0/+6
Change of directory should not be retried relative to the current directory when it has already failed along some path that does not refer to the current directory.
2013-08-1131650: use zlong for mailcheck parameters to ensure rangePeter Stephenson1-0/+5
2013-08-1031648: fix timing errors in mailcheckjoe M1-0/+4
2013-08-0831644: Fix insertion of multibyte characters into editor line.Peter Stephenson1-0/+4
This was broken for a string that came from outside ZLE in the case where the editing buffer wasn't metafied, i.e. not in completion.
2013-08-08users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson1-0/+6
Update ZLE version if history is read, pushed or popped with ZLE active
2013-08-0731634: run-help compat with alias to noglob/nocorrectPhil Pennock1-0/+5
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 Stephenson1-0/+5
Prefer it to cygwin_conv_to_posix_path.
2013-08-04suppress stderr when listing java classes to completeYuusuke Yoshimoto1-0/+5
2013-08-0231611: attempt to fix crash completing redirection in do loopPeter Stephenson1-0/+5
2013-08-01mplayer supports .ts (transport stream) filesThomas Klausner1-0/+5
2013-07-2917591: fix error message for invalid fd in print -uPeter Stephenson1-0/+5
2013-07-2831592: improve documentary for handling of named directories.Manuel Presnitz1-0/+6
Minor changes of phrasing.
2013-07-2531756: further make completion improvements.Jun T1-0/+5
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 Stephenson1-0/+5
Remove dump records more consistently in that case.
2013-07-2431572: Completion/Debian/Command/_linda: DeletedRichard Hartmann1-0/+3
2013-07-2431571: Completion/Unix/Command/_vcsh: UpdateRichard Hartmann1-0/+4
2013-07-2431750: fix for HISTREDUCEBLANKS option.Peter Stephenson1-0/+6
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 Stephenson1-0/+3
2013-07-2231559: Fix history line problem with aliases and commentsPeter Stephenson1-0/+3