diff options
| author | Maxime Coste <mawww@kakoune.org> | 2022-01-24 21:48:51 +1100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2022-01-24 21:53:33 +1100 |
| commit | 6f135c0c8e4d4d5b66cd6b56394ad7d690a16252 (patch) | |
| tree | 2077957e3e42d1968277bd17a6a1bb545e117628 /src/main.cc | |
| parent | 00080f8337cb90aacd3488878ca6d2cb71800a6d (diff) | |
Do not insert any end-of-line when piping data out
This will unfortunately break some use case which will require
using wrapper scripts to add the necessary newline. It is however
harder to do the contrary, and it makes a lot of other use case
possible, such as checksuming.
Fixes #3669
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cc b/src/main.cc index e078efc5..98e33d83 100644 --- a/src/main.cc +++ b/src/main.cc @@ -44,6 +44,9 @@ struct { unsigned int version; StringView notes; } constexpr version_notes[] = { { + 0, + "» pipe commands do not append final end-of-lines anymore\n" + }, { 20211107, "» colored and curly underlines support (undocumented in 20210828)\n" }, { |
