summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* 36049: _tmux: options => session_optionsFrank Terbeck2015-08-101-0/+3
|
* 36054: _tmux: "local -x" serves no purposeFrank Terbeck2015-08-101-0/+3
|
* 36057: _tmux: Replay all arguments when dispatching to new _tmux()Frank Terbeck2015-08-101-0/+3
|
* 36058: _tmux: No need to unset local variablesFrank Terbeck2015-08-101-0/+3
|
* 36050: _tmux: Don't unset, set empty in local scopeFrank Terbeck2015-08-101-0/+3
|
* 36063: _tmux: Remove dead codeFrank Terbeck2015-08-101-0/+2
|
* 36062: _tmux: Add support for new sub-commandsFrank Terbeck2015-08-101-0/+3
|
* 36048: _tmux: Update options for supported commandsFrank Terbeck2015-08-101-0/+3
| | | | This also adds a little TODO on top about what is missing.
* 36046: _tmux: Update command line optionsFrank Terbeck2015-08-101-0/+5
| | | | | | New: -C and -V Removed: -q (tmux still excepts it for backward compatibility, but it does nothing)
* 36045: make effect of failures in wait test clearerPeter Stephenson2015-08-101-0/+3
|
* not quite posted: check for error return before EINTRPeter Stephenson2015-08-101-0/+3
|
* 36039: Restart socket commands on EINTRJoshua Krusell2015-08-101-0/+3
|
* 35885: document closing fd's opened with sysopenPeter Stephenson2015-08-101-0/+5
|
* 36033: a few more queue_signals() to protect global state changesBarton E. Schaefer2015-08-091-0/+5
|
* 36026: zero freed pointers in zftp cleanup_() in case the module is ↵Barton E. Schaefer2015-08-091-0/+3
| | | | re-loaded after unloading
* 36022 fix bug that some loop constructs could not be interrupted, revise ↵Barton E. Schaefer2015-08-091-0/+10
| | | | | | | | | | | 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.
* unposted: add tests for outputting traps specified via aliasesMikael Magnusson2015-08-091-0/+5
|
* Fix retying variables in opposite order.Peter Stephenson2015-08-091-0/+3
| | | | | Now gives an error. Add test.
* 36025: Fix completion aftoer "foo=bar; setopt ".Peter Stephenson2015-08-091-0/+8
| | | | | 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.
* 36008: trap: Fix listing of traps created under non-alias non-canonical ↵Daniel Shahaf2015-08-081-0/+5
| | | | signal spelling
* 35954: Doc: sysopen -u is not optionalMikael Magnusson2015-08-081-0/+4
|
* 35929: protect FDT_PROC_SUBST by #ifdefJun-ichi Takimoto2015-08-091-0/+4
|
* 35928: '%-m' should work even if not supported by strftime(3)Jun-ichi Takimoto2015-08-081-0/+6
| | | | Also clarify document.
* 35991: _ssh: add ssh option FingerprintHashChristian Hesse2015-08-051-0/+3
| | | | Signed-off-by: Christian Hesse <mail@eworm.de>
* unposted: _ssh: use the -q option for the = suffixMikael Magnusson2015-08-051-0/+3
| | | | | This way, you can press = to start completing the values instead of the space, backspace, tab dance
* 35989: _ssh: update to 6.9Mikael Magnusson2015-08-051-0/+4
|
* 35973: new systat and vmstat completionsEric Cook2015-08-051-0/+3
|
* 35972: allow for Directive=Value format in .ssh/configEric Cook2015-08-051-0/+3
|
* 35986: add ssh option UpdateHostKeysChristian Hesse2015-08-051-0/+3
|
* unposted (c.f. Bart: 35902): use - after zle -U in case $key is -Oliver Kiddle2015-08-051-0/+5
|
* unposted: Typo fix.Daniel Shahaf2015-08-041-0/+4
|
* 35970: completion: fix typos in _git and _brace_parameterDaniel Hahler2015-08-021-0/+6
|
* 35957: fix _make-expandVars()Jun-ichi Takimoto2015-08-021-0/+5
| | | | Also use variables set in the command line and environment.
* 35963: simplify condition found by coverity to include tautologyOliver Kiddle2015-07-311-0/+3
|
* 35960 (tweaked): complete correct options for OpenBSD's findMatthew Martin2015-07-311-0/+5
|
* 35953: fix handling of command substitution in math contextBarton E. Schaefer2015-07-291-0/+5
|
* 35947: update discussion of module wrappers, some examplesBarton E. Schaefer2015-07-281-0/+5
|
* 35937: wait for process IDs instead of job numbers in parallel modeBarton E. Schaefer2015-07-271-0/+5
|
* 35274: completion: Add FreeBSD's watch(1)Daniel Shahaf2015-07-261-0/+6
| | | | Review-by: Oliver Kiddle
* 35901: complete full names as removing later components was broken for ↵Oliver Kiddle2015-07-261-0/+5
| | | | aliases and unwanted in any case
* faster method of generating list of python modulesAntony Lee2015-07-261-0/+5
|
* add RPS2 handling to "prompt bart", update help text, clean up indentation ↵Barton E. Schaefer2015-07-251-0/+5
| | | | whitespace
* 35910: Don't add to raw lex buffer if lex stopped.Peter Stephenson2015-07-251-0/+4
| | | | | This was causing a segmentation violation in completion when parsing an incomplete math expression, e.g. 'echo $((3*4)<TAB>'.
* 35809: fix $((...)) completion by _expand widget.Peter Stephenson2015-07-251-0/+3
| | | | | This changes internal quoting of the form still including tokens not to add unnecessary internal backslashes.
* 35908: fix $((...)) completion in expand-or-complete widgetPeter Stephenson2015-07-251-0/+5
|
* 35896: index zle_highlightBarton E. Schaefer2015-07-241-0/+2
|
* 35882: read-command has ZLE_NOTCOMMANDBarton E. Schaefer2015-07-241-0/+4
|
* 35810: FAQ += edit-command-lineDaniel Shahaf2015-07-241-0/+2
|
* 35809: zyodl.vim: Fix nested parenthesesDaniel Shahaf2015-07-241-0/+2
|
* 35807: edit-command-line: Fix for non-7bit-data (after 35769)Daniel Shahaf2015-07-241-0/+5
| | | | Bug reported and fix suggested by Mikael.