File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ impl<'a> ExplorerTab<'a> {
245
245
. collect ( )
246
246
}
247
247
pub fn render_footer ( area : Rect , frame : & mut Frame ) {
248
- Line :: raw ( "Press hjkl|◄▼▲▶ to move | o to open in editor | s to filter " )
248
+ Line :: raw ( "Navigate: < hjkl|◄▼▲▶> | Open in editor: o | Quick edit: e | Filter: s " )
249
249
. centered ( )
250
250
. render ( area, frame. buffer_mut ( ) ) ;
251
251
}
@@ -587,6 +587,7 @@ impl<'a> Component for ExplorerTab<'a> {
587
587
Action :: Search => {
588
588
self . search_bar_widget . is_focused = !self . search_bar_widget . is_focused ;
589
589
}
590
+ Action :: Edit => {
590
591
let entries = self
591
592
. task_mgr
592
593
. get_vault_data_from_path ( & self . current_path , 0 ) ?;
Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ impl<'a> FilterTab<'a> {
130
130
}
131
131
pub fn render_footer ( & self , area : Rect , frame : & mut Frame ) {
132
132
if self . input_bar_widget . is_focused {
133
- Line :: raw ( "Press <enter | esc> to stop searching " )
133
+ Line :: raw ( "Stop Searching: <enter| esc>" )
134
134
} else {
135
- Line :: raw ( "Press < enter | esc> to start searching | <S> to switch sorting modes" )
135
+ Line :: raw ( "Search: <s| enter| esc> | Cycle sorting modes: Shift-s " )
136
136
}
137
137
. centered ( )
138
138
. render ( area, frame. buffer_mut ( ) ) ;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl Home {
59
59
}
60
60
61
61
pub fn render_footer ( area : Rect , frame : & mut Frame ) {
62
- Line :: raw ( "Shift+<hl|◄►> to change tab | q to quit | ? for Help" )
62
+ Line :: raw ( "Change tab: Shift+<hl|◄►> | Quit: q | Help: ? " )
63
63
. centered ( )
64
64
. render ( area, frame. buffer_mut ( ) ) ;
65
65
}
You can’t perform that action at this time.
0 commit comments