about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 31781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer2013-10-032-0/+7
|
* 31772: queue_signals() to prevent re-entry into endparamscope().Barton E. Schaefer2013-09-262-0/+5
|
* 31770: memmove() instead of memcpy() for overlapping regions.Barton E. Schaefer2013-09-262-1/+6
|
* 31765: If zle starts in viins mark as insertion.Peter Stephenson2013-09-252-0/+12
| | | | This allows undo to work on everything entered.
* 31764: Dewreakify havoc caused by pattern disables on glob qualifiers.Peter Stephenson2013-09-233-5/+13
| | | | 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-222-5/+6
| | | | | | | | | | 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-222-1/+6
|
* 31753: _git: correct some "undocumented" optionsm0viefreak2013-09-222-10/+11
| | | | | | | | | 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-222-4/+3
| | | | No functional changes.
* 31749: _git: fix some typos in description textsØystein Walle2013-09-222-16/+21
|
* 31748: _git: support completing remote branches without <remote>/ prefixm0viefreak2013-09-222-0/+19
| | | | | | | | 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-222-1/+6
| | | | | 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-222-1/+103
|
* 31747: _git: completion updates to match latest git v1.8.3 part 2Øystein Walle2013-09-222-27/+96
|
* 31755: _git: completion updates to match latest git v1.8.3m0viefreak2013-09-222-64/+189
|
* 31745: _git: correctly use __git_guard_number in some casesm0viefreak2013-09-222-5/+8
| | | | The space is relevant to make the help text work as intended.
* 31744: _git: make git submodule <cmd> completion workm0viefreak2013-09-222-1/+4
| | | | | 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-222-9/+12
|
* 31741: _git: fix a wrong variable in __git_config_valuesm0viefreak2013-09-222-1/+6
| | | | This probably was a copy/paste mistake.
* unposted: improve an error message.Barton E. Schaefer2013-09-212-1/+6
|
* 31737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer2013-09-192-1/+5
|
* 31735: fix off-by-one in completion utility cache code.Axel Beckert2013-09-192-1/+7
| | | | Was causing crashes in complex completions, particularly with taskwarrior
* 31726: _git: add few more arguments for cherry-pick and revertLuka Perkov2013-09-142-0/+9
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* 31723: _systemd: add more system commandsLuka Perkov2013-09-142-1/+16
| | | | | | | 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-102-2/+19
| | | | symbolic link.
* conflict resolutionPeter Stephenson2013-09-082-0/+7
|\
| * 31708: _git: add --fixup and --squash options to commitLuka Perkov2013-09-072-0/+7
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | 31711: add execute-never style for MIME function system.Peter Stephenson2013-09-083-1/+33
|/ | | | Allows alien file systems to be marked as not having executable fiels
* 31702: check for git rebase -i for autosquashLuka Perkov2013-09-062-1/+4
|
* 31706: standardize handling of "test ! <x> <y> <z>"Peter Stephenson2013-09-063-4/+20
|
* 31658: fix manual entry about getting lines from mapfilePeter Stephenson2013-09-062-3/+11
|
* 31696: In "test" No One Can Hear If You Shriek.Peter Stephenson2013-09-043-3/+38
| | | | Treat ! as a string in "test ! -a ..." and "test ! -o ...".
* users/17955: new "disown" style for MIME handlers.Peter Stephenson2013-08-293-3/+18
| | | | Makes handlers put into the background run without job control.
* based on 31641, 31642: completion for more make variantsPeter Stephenson2013-08-292-1/+6
|
* 31672: Add test that was failing and fix zpty set-up racePeter Stephenson2013-08-263-3/+42
|
* Update ChangeLog entry with mailing list reference.Peter Stephenson2013-08-261-2/+2
|
* 31665: zpty should attach terminal on slave.Peter Stephenson2013-08-254-0/+29
| | | | Also add test.
* 31637: be more selective about retry of lchdir() in cd_do_chdir()Barton E. Schaefer2013-08-182-1/+8
| | | | | | 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.
* 31650: use zlong for mailcheck parameters to ensure rangePeter Stephenson2013-08-112-4/+9
|
* 31648: fix timing errors in mailcheckjoe M2013-08-102-3/+10
|
* 31644: Fix insertion of multibyte characters into editor line.Peter Stephenson2013-08-082-1/+6
| | | | | 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.
* users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson2013-08-084-1/+25
| | | | Update ZLE version if history is read, pushed or popped with ZLE active
* 31634: run-help compat with alias to noglob/nocorrectPhil Pennock2013-08-072-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.
* 31631: Use cygwin_conv_path if available.Peter Stephenson2013-08-053-1/+12
| | | | Prefer it to cygwin_conv_to_posix_path.
* suppress stderr when listing java classes to completeYuusuke Yoshimoto2013-08-042-1/+6
|
* 31611: attempt to fix crash completing redirection in do loopPeter Stephenson2013-08-022-2/+29
|
* mplayer supports .ts (transport stream) filesThomas Klausner2013-08-012-1/+6
|
* 17591: fix error message for invalid fd in print -uPeter Stephenson2013-07-292-8/+13
|
* 31592: improve documentary for handling of named directories.Manuel Presnitz2013-07-284-12/+23
| | | | Minor changes of phrasing.
* 31756: further make completion improvements.Jun T2013-07-252-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).