summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-08 00:18:09 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-08 00:18:09 -0400
commit102e78e20dd3b19e7075f5d9d3ad3e1216687429 (patch)
tree78fdd0f4827f844fad71f0b78da397661b88234c
parent02d34dc1b8e416ce8ef1ced287f7d0beadc7a514 (diff)
downloadcmd2-git-102e78e20dd3b19e7075f5d9d3ad3e1216687429.tar.gz
Updated change log
-rw-r--r--CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f88f6d3..f8cdc3b4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
the behavior of aliases. Use the `expanded` or `verbose` arguments to `history` to see the resolved value for
the macro.
* Enhancements
+ * Added capability to chain pipe commands and redirect their output (e.g. !ls -l | grep user | wc -l > out.txt)
* `pyscript` limits a command's stdout capture to the same period that redirection does.
Therefore output from a command's postparsing and finalization hooks isn't saved in the StdSim object.
* `StdSim.buffer.write()` now flushes when the wrapped stream uses line buffering and the bytes being written
@@ -15,7 +16,6 @@
scroll the actual error message off the screen.
* Exceptions occurring in tab completion functions are now printed to stderr before returning control back to
readline. This makes debugging a lot easier since readline suppresses these exceptions.
- * Added capability to chain pipe commands and redirect their output (e.g. !ls -l | grep user | wc -l > out.txt)
* Potentially breaking changes
* Replaced `unquote_redirection_tokens()` with `unquote_specific_tokens()`. This was to support the fix
that allows terminators in alias and macro values.