Skip to content

Commit dafd953

Browse files
committed
Replace text of \t with " " in output
1 parent 98dc85a commit dafd953

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,7 @@ fn draw_output(app: &App, f: &mut Frame, output: Rect, full: bool) {
663663
.skip(skip)
664664
.take(max as usize)
665665
.map(|m| {
666+
let m = m.replace('\t', " ");
666667
let content = vec![Line::from(Span::raw(format!("{}", m)))];
667668
ListItem::new(content)
668669
})

0 commit comments

Comments
 (0)