Skip to content

Commit

Permalink
version 1.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Sep 27, 2023
1 parent 28163b8 commit 71244df
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "broot"
version = "1.25.3-dev"
version = "1.26.0"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/broot"
homepage = "https://dystroy.org/broot"
Expand Down
2 changes: 1 addition & 1 deletion src/verb/verb_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 71244df

Please sign in to comment.