From 83b60988279c5caa513ac1fed2a2d8b930563392 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 4 Oct 2020 14:23:57 +0200 Subject: [PATCH] CHANGELOG A better example for the builtin buffering and a plurality thinko ("the docs are", "the documentation is"). [ci skip] --- CHANGELOG.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6072ef409..e201f562c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -29,11 +29,12 @@ Notable improvements and fixes - builtins may now output before all data is read. For example, ``string replace`` no longer has to read all of stdin before it can begin to output. This makes it usable also for pipes where the previous command hasn't finished yet, like:: - dmesg -w | string replace foo bar + # Show all dmesg lines related to "usb" + dmesg -w | string match '*usb*' - ``set`` and backgrounded jobs no longer overwrite ``$pipestatus`` (#6820), improving its use in command substitutions (#6998). - Significant performance improvements to completions (#7153). -- The documentation are now presented in a new theme (#6500, #7371). +- The documentation is now presented in a new theme (#6500, #7371). Syntax changes and new commands -------------------------------