Skip to content

Commit

Permalink
added more help
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaisvil committed Apr 2, 2020
1 parent a3ffec5 commit 8b85430
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,10 @@ fn render_process_table<'a>(
});

let title = if show_find{
format!("Find: {:}", filter)
format!("[ESC] Clear, Find: {:}", filter)
}
else if filter.len() > 0{
format!("Filtered Results: {:}, [f] to change/clear", filter)
}
else{
format!("Tasks [{:}] Threads [{:}] Navigate [↑/↓] Sort Col [,/.] Asc/Dec [/] Filter [f]",
Expand Down

0 comments on commit 8b85430

Please sign in to comment.