Skip to content

Commit eec938b

Browse files
committed
:stage_all_files now also stage symlinks
Fix #606
1 parent 9f36e50 commit eec938b

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### next
2+
- small breaking change: `:stage_all_files` now stages also symlinks - Fix #606
3+
14
### v1.26.1 - 2023-09-30
25
<a name="v1.26.1"></a>
36
- improved status line

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "broot"
3-
version = "1.26.1"
3+
version = "1.26.2-dev"
44
authors = ["dystroy <[email protected]>"]
55
repository = "https://github.com/Canop/broot"
66
homepage = "https://dystroy.org/broot"

src/browser/browser_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ impl PanelState for BrowserState {
684684
time!(builder.build_paths(
685685
total_search,
686686
dam,
687-
|line| line.file_type.is_file(),
687+
|line| line.file_type.is_file() || line.file_type.is_symlink(),
688688
))
689689
})?;
690690
for path in paths.drain(..) {

0 commit comments

Comments
 (0)