about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* 31830: New feature for zshaddhistory hooks.Peter Stephenson2013-10-171-0/+6
| | | | | If the first non-zero return status is 2, save the line on the internal history list, but don't write it out.
* Users/18033: Documentation for exit and ERR_EXIT.Peter Stephenson2013-10-161-0/+6
| | | | | Notes about interaction with asynchronous jobs such as process substitution and multios.
* 31872: zshaddhistory hook example needs options.Peter Stephenson2013-10-161-0/+5
| | | | Only works with INCAPPENDHISTORY or SHAREHISTORY set.
* Fix trivial typo in zshaddhistory doc.Peter Stephenson2013-10-151-0/+4
|
* 31818: fix completion for zsh in _sh, and document the _arguments behavior ↵Barton E. Schaefer2013-10-121-0/+7
| | | | | | | | that made the fix necessary To avoid side effects, reposition the _arguments call in _sh for the zsh special case. Document the side effects so avoided, and clean up the _arguments documentation a bit along the way.
* Update ChangeLog with previous commitsMikael Magnusson2013-10-111-6/+21
|
* 31815: another fix for INCAPPENDHISTORY change.Peter Stephenson2013-10-111-0/+5
| | | | | We need to save immediately if something is pushed on the history stack to ensure we use the right file before popping.
* 31810: tests for simple XTRACE output from conditionsPeter Stephenson2013-10-101-0/+3
|
* 31809: Make whitespace clear in trace output for patterns.Peter Stephenson2013-10-101-0/+5
|
* 31801: missing local declaration for variables in completionEric Cook2013-10-081-0/+5
|
* 31797: to match documentation, avoid expanding history when there is neither aBarton E. Schaefer2013-10-081-0/+9
| | | | | | | | | word nor an event designator There are still a few cases where expansion is attempted even though the documentation indicates it will not be, but in most of those cases the expansion will fail. The now-fixed case would fall back to default expansion of the previous command.
* 31794: further refinement to INCAPPENDHISTORY change.Peter Stephenson2013-10-071-0/+3
| | | | | | With SHAREHISTORY we should make sure the code behaves as it always did, because it takes care about locking a file once for reading and writing.
* 31793: Fix problem with non-interactive history.Peter Stephenson2013-10-071-0/+5
| | | | | Modify 31789 so it doesn't try to save history from hbegin() in that case.
* Add new options for rsync 3.1.0.Wayne Davison2013-10-061-0/+5
|
* users:18023: Add PIPEFAIL optionPeter Stephenson2013-10-061-0/+5
|
* 31789: Save history for INCAPPENDHISTORY later.Han Pingtian2013-10-051-0/+5
| | | | This improves the timing recorded in the history.
* 31784: better line width calculation for completion listingsBarton E. Schaefer2013-10-031-0/+6
| | | | | | | When deciding whether there is enough horizontal space to show completion descriptions for each match in a listing, treat the separator as part of the description rather than as part of the match, and account for lines that have already wrapped due to very long matches.
* 31781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer2013-10-031-0/+6
|
* 31772: queue_signals() to prevent re-entry into endparamscope().Barton E. Schaefer2013-09-261-0/+3
|
* 31770: memmove() instead of memcpy() for overlapping regions.Barton E. Schaefer2013-09-261-0/+5
|
* 31765: If zle starts in viins mark as insertion.Peter Stephenson2013-09-251-0/+5
| | | | This allows undo to work on everything entered.
* 31764: Dewreakify havoc caused by pattern disables on glob qualifiers.Peter Stephenson2013-09-231-0/+6
| | | | Don't use the zpc_specials array before it's defined, it's rude.
* 31754: _git: git rm: make git rm --cached work as intendedm0viefreak2013-09-221-0/+5
| | | | | | | | | | While limiting the completion to __git_changed-in-index_files makes perfect sense for "git diff", it is wrong to use for "git rm", because it prevents it from completing files present in HEAD. Giving --cached to git rm is supposed to "just remove it from the index, keep the working tree copy" and is in no way related to the file needing to be modified in the index in the first place.
* 31752: _git: change completion text for consistencyØystein Walle2013-09-221-0/+5
|
* 31753: _git: correct some "undocumented" optionsm0viefreak2013-09-221-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
* 31751: _git: remove TODOs of actually documented optionsØystein Walle2013-09-221-0/+3
| | | | No functional changes.
* 31749: _git: fix some typos in description textsØystein Walle2013-09-221-0/+5
|
* 31748: _git: support completing remote branches without <remote>/ prefixm0viefreak2013-09-221-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
* 31746: _git: reword _git-config TODOm0viefreak2013-09-221-0/+5
| | | | | Support for merge drivers, filter drivers, and diff drivers is missing.
* 31750: _git: add new configuration options to match latest git v1.8.3Øystein Walle2013-09-221-0/+3
|
* 31747: _git: completion updates to match latest git v1.8.3 part 2Øystein Walle2013-09-221-0/+5
|
* 31755: _git: completion updates to match latest git v1.8.3m0viefreak2013-09-221-0/+3
|
* 31745: _git: correctly use __git_guard_number in some casesm0viefreak2013-09-221-0/+3
| | | | The space is relevant to make the help text work as intended.
* 31744: _git: make git submodule <cmd> completion workm0viefreak2013-09-221-0/+3
| | | | | The -A parameter in the main completion stopped completion in the subcommands from working. Remove it.
* 31743: _git: fix usage of ->int: for some entries in _git-configm0viefreak2013-09-221-0/+3
|
* 31741: _git: fix a wrong variable in __git_config_valuesm0viefreak2013-09-221-0/+5
| | | | This probably was a copy/paste mistake.
* unposted: improve an error message.Barton E. Schaefer2013-09-211-0/+4
|
* 31737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer2013-09-191-0/+4
|
* 31735: fix off-by-one in completion utility cache code.Axel Beckert2013-09-191-0/+6
| | | | Was causing crashes in complex completions, particularly with taskwarrior
* 31726: _git: add few more arguments for cherry-pick and revertLuka Perkov2013-09-141-0/+3
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* 31723: _systemd: add more system commandsLuka Perkov2013-09-141-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>
* 31714: handle ".." properly when $PWD or the path prefix traverses a ↵Barton E. Schaefer2013-09-101-0/+5
| | | | symbolic link.
* conflict resolutionPeter Stephenson2013-09-081-0/+5
|\
| * 31708: _git: add --fixup and --squash options to commitLuka Perkov2013-09-071-0/+5
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | 31711: add execute-never style for MIME function system.Peter Stephenson2013-09-081-0/+6
|/ | | | Allows alien file systems to be marked as not having executable fiels
* 31702: check for git rebase -i for autosquashLuka Perkov2013-09-061-0/+3
|
* 31706: standardize handling of "test ! <x> <y> <z>"Peter Stephenson2013-09-061-0/+5
|
* 31658: fix manual entry about getting lines from mapfilePeter Stephenson2013-09-061-0/+5
|
* 31696: In "test" No One Can Hear If You Shriek.Peter Stephenson2013-09-041-0/+6
| | | | Treat ! as a string in "test ! -a ..." and "test ! -o ...".
* users/17955: new "disown" style for MIME handlers.Peter Stephenson2013-08-291-0/+4
| | | | Makes handlers put into the background run without job control.