We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36f49c commit 4eb7370Copy full SHA for 4eb7370
src/output/dump.rs
@@ -73,7 +73,13 @@ fn dump_tree_helper(
73
return Ok(());
74
}
75
76
- let (pref_child, pref) = if last { (" ", "`- ") } else { ("| ", "|- ") };
+ let (pref_child, pref) = if node.object().parent().is_none() {
77
+ ("", "")
78
+ } else if last {
79
+ (" ", "╰─ ")
80
+ } else {
81
+ ("│ ", "├─ ")
82
+ };
83
84
let node_row = node.object().start_position().row + 1;
85
let mut display = true;
0 commit comments