summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-08-1036047: _tmux: Fix options with changed scopeFrank Terbeck2-8/+11
2015-08-1036064: _tmux: Add new command aliasesFrank Terbeck2-0/+6
2015-08-1036052: _tmux: Remove old sub-commands and their aliasesFrank Terbeck2-59/+3
2015-08-1036056: Add helper script to check state of _tmux completionFrank Terbeck2-0/+219
2015-08-1036049: _tmux: options => session_optionsFrank Terbeck2-5/+8
2015-08-1036054: _tmux: "local -x" serves no purposeFrank Terbeck2-2/+5
2015-08-1036057: _tmux: Replay all arguments when dispatching to new _tmux()Frank Terbeck2-1/+4
2015-08-1036058: _tmux: No need to unset local variablesFrank Terbeck2-1/+3
2015-08-1036050: _tmux: Don't unset, set empty in local scopeFrank Terbeck2-1/+4
2015-08-1036063: _tmux: Remove dead codeFrank Terbeck2-12/+2
2015-08-1036062: _tmux: Add support for new sub-commandsFrank Terbeck2-12/+91
2015-08-1036048: _tmux: Update options for supported commandsFrank Terbeck2-145/+197
This also adds a little TODO on top about what is missing.
2015-08-1036046: _tmux: Update command line optionsFrank Terbeck2-1/+7
New: -C and -V Removed: -q (tmux still excepts it for backward compatibility, but it does nothing)
2015-08-1036045: make effect of failures in wait test clearerPeter Stephenson2-1/+6
2015-08-10not quite posted: check for error return before EINTRPeter Stephenson3-2/+5
2015-08-1036039: Restart socket commands on EINTRJoshua Krusell3-4/+13
2015-08-1035885: document closing fd's opened with sysopenPeter Stephenson2-0/+10
2015-08-0936033: a few more queue_signals() to protect global state changesBarton E. Schaefer3-1/+16
2015-08-0936026: zero freed pointers in zftp cleanup_() in case the module is ↵Barton E. Schaefer2-0/+5
re-loaded after unloading
2015-08-0936022 fix bug that some loop constructs could not be interrupted, revise ↵Barton E. Schaefer7-14/+119
signal queueing There are two underlying ideas here: (1) Keeping signals queued around anything that's doing memory management (including push/pop of the heap) has become crucial. (2) Anytime the shell is going to run a command, be it buitin or external, it must be both safe and necessary to process any queued signals, so that the apparent order of signal arrival and command execution is preserved.
2015-08-09unposted: add tests for outputting traps specified via aliasesMikael Magnusson2-0/+16
2015-08-09Fix retying variables in opposite order.Peter Stephenson3-1/+11
Now gives an error. Add test.
2015-08-0936025: Fix completion aftoer "foo=bar; setopt ".Peter Stephenson2-3/+21
Done by catching a case that doesn't seem to be handled otherwise, so there's some hope it doesn't screw up too much.
2015-08-0836008: trap: Fix listing of traps created under non-alias non-canonical ↵Daniel Shahaf2-1/+12
signal spelling
2015-08-0835954: Doc: sysopen -u is not optionalMikael Magnusson2-2/+6
2015-08-0935929: protect FDT_PROC_SUBST by #ifdefJun-ichi Takimoto2-2/+9
2015-08-0835928: '%-m' should work even if not supported by strftime(3)Jun-ichi Takimoto3-4/+11
Also clarify document.
2015-08-0535991: _ssh: add ssh option FingerprintHashChristian Hesse2-0/+8
Signed-off-by: Christian Hesse <mail@eworm.de>
2015-08-05unposted: _ssh: use the -q option for the = suffixMikael Magnusson2-1/+4
This way, you can press = to start completing the values instead of the space, backspace, tab dance
2015-08-0535989: _ssh: update to 6.9Mikael Magnusson2-45/+86
2015-08-0535973: new systat and vmstat completionsEric Cook3-0/+174
2015-08-0535972: allow for Directive=Value format in .ssh/configEric Cook2-2/+5
2015-08-0535986: add ssh option UpdateHostKeysChristian Hesse2-0/+4
2015-08-05unposted (c.f. Bart: 35902): use - after zle -U in case $key is -Oliver Kiddle2-1/+6
2015-08-04unposted: Typo fix.Daniel Shahaf2-1/+5
2015-08-0235970: completion: fix typos in _git and _brace_parameterDaniel Hahler3-3/+9
2015-08-0235957: fix _make-expandVars()Jun-ichi Takimoto2-60/+77
Also use variables set in the command line and environment.
2015-07-3135963: simplify condition found by coverity to include tautologyOliver Kiddle2-2/+4
2015-07-3135960 (tweaked): complete correct options for OpenBSD's findMatthew Martin2-9/+18
2015-07-2935953: fix handling of command substitution in math contextBarton E. Schaefer3-1/+16
2015-07-2835947: update discussion of module wrappers, some examplesBarton E. Schaefer2-7/+35
2015-07-27Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer1-53/+96
2015-07-2735937: wait for process IDs instead of job numbers in parallel modeBarton E. Schaefer2-2/+7
2015-07-27_arguments docs: Divide into subsectionsDaniel Shahaf1-0/+12
2015-07-27_arguments docs: Bring all option descriptions to one placeDaniel Shahaf1-54/+85
2015-07-2635274: completion: Add FreeBSD's watch(1)Daniel Shahaf3-0/+28
Review-by: Oliver Kiddle
2015-07-2635901: complete full names as removing later components was broken for ↵Oliver Kiddle2-2/+7
aliases and unwanted in any case
2015-07-26faster method of generating list of python modulesAntony Lee2-4/+7
2015-07-25add RPS2 handling to "prompt bart", update help text, clean up indentation ↵Barton E. Schaefer2-11/+33
whitespace
2015-07-2535910: Don't add to raw lex buffer if lex stopped.Peter Stephenson2-1/+6
This was causing a segmentation violation in completion when parsing an incomplete math expression, e.g. 'echo $((3*4)<TAB>'.