diff options
author | Canop <cano.petrole@gmail.com> | 2023-09-27 12:21:02 +0200 |
---|---|---|
committer | Canop <cano.petrole@gmail.com> | 2023-09-27 12:21:02 +0200 |
commit | 71244dfb7170c1e3f4187bf7d7ef606af7291b1e (patch) | |
tree | 49f7d1b21348bc2b629ca5d9e6bc9c51af6a8864 | |
parent | 28163b8a21fc0bce8a44ce453f357b6382b9121f (diff) |
version 1.26.0v1.26.0
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/verb/verb_store.rs | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f4bba0..7d9ad7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ -### next +### v1.26.0 - 2023-09-27 +<a name="v1.26.0"></a> +- when given a path to a file at launch, broot now selects it in the tree and opens it in preview - Fix #729 - allow rebinding of the 'tab' and 'esc' keys with the `:next_match` and `:escape` internals - Fix #740 - fix fuzzy patterns not case insensitive on some characters - Fix #746 -- when given a path to a file at launch, broot now selects it in the tree and opens it in preview - Fix #729 ### v1.25.2 - 2023-09-20 <a name="v1.25.2"></a> @@ -207,7 +207,7 @@ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" [[package]] name = "broot" -version = "1.25.3-dev" +version = "1.26.0" dependencies = [ "ahash 0.8.3", "ansi_colours", @@ -1,6 +1,6 @@ [package] name = "broot" -version = "1.25.3-dev" +version = "1.26.0" authors = ["dystroy <denys.seguret@gmail.com>"] repository = "https://github.com/Canop/broot" homepage = "https://dystroy.org/broot" diff --git a/src/verb/verb_store.rs b/src/verb/verb_store.rs index e9cee1a..3ff9c63 100644 --- a/src/verb/verb_store.rs +++ b/src/verb/verb_store.rs @@ -275,7 +275,7 @@ impl VerbStore { #[cfg(unix)] self.add_external("rm", "rm -rf {file}", StayInBroot); #[cfg(windows)] - add_external("rm", "cmd /c rmdir /Q /S {file}", StayInBroot) + self.add_external("rm", "cmd /c rmdir /Q /S {file}", StayInBroot) .with_stype(SelectionType::Directory); #[cfg(windows)] self.add_external("rm", "cmd /c del /Q {file}", StayInBroot) |