Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-11-07 | 33607: Fix some minor problems in zattr module | Mikael Magnusson | 2 | -37/+34 | |
Remove the listattr call in zgetattr, it only caused no error to be output when trying to retrieve an xattr from a file with no xattrs. When a file had xattrs, it would just add an extra syscall for no good reason. Always set an array parameter in zlistattr, this makes the returned value much easier to use; in fact the _zattr completer didn't account for this and zlistattr foo <tab> on a file with only one attribute did not work. Almost all of the patch is only reindent, the only modification that's not a pure deletions is: - ret = 1 + (attr_len > val_len || attr_len < 0); + ret = 1 + ((val_len > 0 && attr_len > val_len) || attr_len < 0); which makes sure we return the correct error in the new path due to the removed listattr call. (If val_len is -1 due to no attribute existing, it doesn't mean the user should retry the call because the attribute grew in size). | |||||
2014-11-06 | 33614 (based on RedHat BZ-978613): signal safety when updating global state ↵ | Barton E. Schaefer | 2 | -0/+11 | |
in execshfunc() | |||||
2014-11-05 | 33604: fix change merging for vi mode where a change has just been undone | Oliver Kiddle | 4 | -5/+16 | |
2014-11-04 | 33596: make local keymap keybinding hide global keymap | Oliver Kiddle | 2 | -1/+6 | |
binding that is a prefix of the local binding | |||||
2014-11-03 | 33593: support numeric argument to vi-join | Oliver Kiddle | 3 | -14/+36 | |
2014-11-03 | 33575: reset vi change start position if text is inserted | Oliver Kiddle | 3 | -1/+9 | |
before it or on history movement | |||||
2014-11-02 | Treat exec from subshell as if forked | Peter Stephenson | 3 | -1/+23 | |
This removes weird behaviour when optimising the last command. In particular SHLVL is correct from a subshell executed as the last command. | |||||
2014-10-31 | unposted: quash compiler warning | Oliver Kiddle | 2 | -0/+4 | |
2014-10-31 | correct cursor position in test | Oliver Kiddle | 2 | -1/+5 | |
2014-10-31 | unposted: Add /.project to .gitignore for use by GitEye | Peter Stephenson | 2 | -0/+3 | |
2014-10-31 | 33582: don't include tcp.mdh in zftp.c. | Peter Stephenson | 2 | -1/+3 | |
It's a private module definition header that doesn't need to be exposed. | |||||
2014-10-31 | Take more care with errors from setuid(). | Jérémie Roquet | 2 | -1/+16 | |
This is to ensure the user is aware of errors unsetting the PRIVELEGED option. | |||||
2014-10-30 | 33570, 33576: make killring/yank-pop work in vi mode after | Oliver Kiddle | 7 | -88/+132 | |
vi-put-before and vi-put-after | |||||
2014-10-29 | Merge branch 'master' of git://git.code.sf.net/p/zsh/code | Barton E. Schaefer | 5 | -15/+57 | |
Conflicts: ChangeLog | |||||
2014-10-29 | 33566: quash null pointer constant compiler warning | Jun T | 2 | -1/+3 | |
2014-10-29 | 33563: Completion/Base/Core/_main_complete, Src/Zle/complist.c: fix thinko ↵ | Barton E. Schaefer | 3 | -7/+14 | |
in status message for INT/QUIT signals; check errflag in output loops Two semi-related patches for keyboard interrupt handling in completion, most importantly so that unexpectedly long completion listings can be interrupted. | |||||
2014-10-29 | 33528: take notice of last column position when using vi-yank | Oliver Kiddle | 4 | -15/+50 | |
and an upward cursor movement | |||||
2014-10-27 | 33562: Fix thinko in previous commit | Mikael Magnusson | 2 | -2/+5 | |
2014-10-27 | 33561: The time builtin forgot to unmetafy TIMEFMT | Mikael Magnusson | 2 | -1/+5 | |
2014-10-26 | 33564: care with monitor option in test | Peter Stephenson | 2 | -1/+3 | |
2014-10-26 | 33542: test logic for waiting for already exited processes | Peter Stephenson | 2 | -2/+29 | |
2014-10-26 | 33531 with additions: retain status of exited background jobs. | Peter Stephenson | 8 | -35/+157 | |
Add linked list of unwaited-for background jobs. Truncate at value of _SC_CHILD_MAX discarding oldest. Remove old lastpid_status mechanism for latest exited process only. Slightly tighten safety of permanently allocated linked lists so that this doesn't compromise signal handling. | |||||
2014-10-24 | 33526: fix completion path prefix handling when NO_CASE_GLOB is in effect | Barton E. Schaefer | 2 | -1/+13 | |
2014-10-24 | 33480, slightly tweaked: fix for $' completion. | Peter Stephenson | 2 | -4/+16 | |
Improves case where completing after the $' but before any closing quote, or if the closing quote is absent. No other change --- we still don't attempt to exand the quotes if we're inside them. | |||||
2014-10-24 | 33485: fix a missing ;; case terminator | Mikael Magnusson | 2 | -0/+6 | |
2014-10-24 | 33520: correct cursor positioning following a vi mode yank operation | Oliver Kiddle | 3 | -1/+33 | |
2014-10-23 | unposted: specify 8 char indent for ChangeLog in .editorconfig | Oliver Kiddle | 2 | -0/+6 | |
2014-10-23 | 33519: last character in the buffer can be cut, changed or yanked using ↵ | Oliver Kiddle | 3 | -1/+9 | |
vi-forward-char | |||||
2014-10-23 | 33518: add support for "_ vi buffer and arguments to vi-set-buffer from a ↵ | Oliver Kiddle | 6 | -20/+107 | |
zle widget | |||||
2014-10-23 | 33514: even with a named vi buffer, we should update the default buffer | Oliver Kiddle | 2 | -1/+3 | |
2014-10-23 | 33513: vi mode deletions should replace cut buffer not append to it | Oliver Kiddle | 2 | -4/+7 | |
2014-10-23 | 33512: add support for "0 vi buffer and yank to it | Oliver Kiddle | 5 | -14/+27 | |
2014-10-22 | 33515: suppress parser error messages in comp_match() | Barton E. Schaefer | 2 | -0/+6 | |
2014-10-22 | 33493: use correct command name in error messages about "ulimit" failure; ↵ | Barton E. Schaefer | 3 | -1/+8 | |
restore internal copy of limits if setrlimit() fails, so the error won't repeat | |||||
2014-10-21 | 33486: new completion function | Oliver Kiddle | 2 | -0/+73 | |
2014-10-21 | 33485: fixes for zstyle context handling | Oliver Kiddle | 23 | -145/+164 | |
2014-10-21 | 33481: resolve completion clashes and tidy-up SUSE/Mandriva related functions | Oliver Kiddle | 8 | -71/+40 | |
2014-10-17 | see 33475: allow .cpp files to be completed as gcc input | Peter Stephenson | 2 | -1/+6 | |
2014-10-14 | 33455: update GNU global option completion | Syohei YOSHIDA | 2 | -0/+19 | |
2014-10-14 | 33467: correct return status on functions and numerous other minor fixes | Oliver Kiddle | 45 | -686/+570 | |
2014-10-13 | 33459: test for variable substitution in variable splitting | Peter Stephenson | 2 | -0/+25 | |
2014-10-13 | 33438: use the new way of splitting strings with a dynamic separator | Oliver Kiddle | 2 | -11/+17 | |
from 33423 and quote separators where needed | |||||
2014-10-12 | 33445: fix handling of -s when combined with -i at shell invocation | Barton E. Schaefer | 2 | -4/+21 | |
Fixes a long-standing (25+ years) bug where using -i -s together did have the documented effect of disabling command line script files but also had the side-effect of invoking ZLE, thereby ignoring the redirected input. | |||||
2014-10-12 | 33423: expand ${(p)...} to allow ${(ps.$param.)...} | Peter Stephenson | 3 | -5/+35 | |
2014-10-11 | Tests for workers/33429 | Barton E. Schaefer | 2 | -0/+18 | |
2014-10-10 | Merge branch 'master' of git://git.code.sf.net/p/zsh/code | Barton E. Schaefer | 15 | -104/+284 | |
Conflicts: ChangeLog | |||||
2014-10-10 | 33429: disallow non-integer values for HISTSIZE and SAVEHIST of "fc -p", and ↵ | Barton E. Schaefer | 3 | -7/+25 | |
fix crash on zero values for same | |||||
2014-10-11 | 33424: use common function for completing Debian architectures | Oliver Kiddle | 11 | -86/+106 | |
2014-10-10 | 33420: complete -R/-m options and fix feature completion | Oliver Kiddle | 2 | -18/+27 | |
2014-10-10 | 33375: new sv completion | fREW Schmidt | 2 | -0/+75 | |