diff options
author | Canop <cano.petrole@gmail.com> | 2022-12-15 16:55:06 +0100 |
---|---|---|
committer | Canop <cano.petrole@gmail.com> | 2022-12-15 16:55:06 +0100 |
commit | 805187a98ed322852ef824d13a8b5c922be12fd4 (patch) | |
tree | 52e55e27fa1bd3f08b364e281f02662fb1380810 | |
parent | e4097c9d09b6df41203b0ca99fc3b728a0ca8970 (diff) |
Fix crash on selection->clear->delete
Fix #643
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index afeb7d7..4487f70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### next +- allow opening the help screen with just the `?` key on Windows (as for other systems) +- fix a crash in some cases of input being cleaned with a selection - Fix #643 + ### v1.17.1 - 2022-12-15 <a name="v1.17.1"></a> - Windows specific implementation of :cpp @@ -1890,9 +1890,9 @@ dependencies = [ [[package]] name = "termimad" -version = "0.20.5" +version = "0.20.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eebc2b56ff63378c3f6c99245ca8e8f910f08ef441c5c89854d63e7f687f1f04" +checksum = "cfab44b4bc17601cf226cce31c87462a4a5bd5d325948c8ebbc9e715660a1287" dependencies = [ "coolor", "crossbeam", @@ -57,7 +57,7 @@ splitty = "1.0" strict = "0.1.4" syntect = { package = "syntect-no-panic", version = "4.6.1" } # see issue #485 tempfile = "3.2" -termimad = "0.20.5" +termimad = "0.20.6" terminal-clipboard = { version = "0.3.1", optional = true } terminal-light = "1.0.1" toml = "0.5" |