From 4fb6204a6139c817db4213f67855e5977bb55bea Mon Sep 17 00:00:00 2001 From: David Sid Olofsson Date: Wed, 25 Oct 2023 09:02:13 +0200 Subject: [PATCH] Release 0.11.1 --- Cargo.toml | 2 +- POTENTIAL_FEATURES.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1160d26..7189c7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "add-ed" description = "Embeddable pure rust editor based on ED" -version = "0.11.0" +version = "0.11.1" repository = "https://github.com/sidju/add-ed" readme = "README.md" categories = ["text-editors"] diff --git a/POTENTIAL_FEATURES.md b/POTENTIAL_FEATURES.md index 30b6445..79c9e60 100644 --- a/POTENTIAL_FEATURES.md +++ b/POTENTIAL_FEATURES.md @@ -1,3 +1,10 @@ +# Support "\r\n" line termination in local_io +Add public flags that configure wether or not to write in a '\r' before every +'\n' when writing to files or commands, respectively. + +Not yet implemented since I don't use windows. Tell me if you need it and give +me two weeks. + # Plugin support, `@`: Using a specific Macro trait and a `HashMap<&str, &mut dyn Macro>`.