@@ -509,9 +509,10 @@ impl App {
509509 Line :: from( format!( "{:09} - Execute before cursor" , self . kb_config. execute_until_prev. first( ) . unwrap( ) . to_string( ) ) ) ,
510510 Line :: from( format!( "{:09} - Reset input" , self . kb_config. reset_input. first( ) . unwrap( ) . to_string( ) ) ) ,
511511 Line :: from( "" ) ,
512- Line :: from( format!( "{:09} - Search ↓" , "F3" ) ) ,
513- Line :: from( format!( "{:09} - Search ↑" , "F4" ) ) ,
514- Line :: from( format!( "{:09} - Switch case sensitivity" , "alt+c" ) ) ,
512+ Line :: from( format!( "{:09} - Search next" , self . kb_config. search_next. first( ) . unwrap( ) . to_string( ) ) ) ,
513+ Line :: from( format!( "{:09} - Search previous" , self . kb_config. search_prev. first( ) . unwrap( ) . to_string( ) ) ) ,
514+ Line :: from( format!( "{:09} - Toggle regex mode" , "alt+x" ) ) ,
515+ Line :: from( format!( "{:09} - Toggle case sensitivity" , "alt+c" ) ) ,
515516 Line :: from( "" ) ,
516517 Line :: from( format!( "{:09} - Complete forward" , self . kb_config. complete. first( ) . unwrap( ) . to_string( ) ) ) ,
517518 Line :: from( format!( "{:09} - Complete backward" , self . kb_config. complete_prev. first( ) . unwrap( ) . to_string( ) ) ) ,
@@ -550,10 +551,6 @@ impl App {
550551 spans. push ( " Execute " . into ( ) ) ;
551552 spans. push ( "F1" . bold ( ) ) ;
552553 spans. push ( " Help " . into ( ) ) ;
553- spans. push ( "F3" . bold ( ) ) ;
554- spans. push ( "/" . into ( ) ) ;
555- spans. push ( "F4" . bold ( ) ) ;
556- spans. push ( " Search ↓/↑ " . into ( ) ) ;
557554 spans. push ( "F11 " . bold ( ) ) ;
558555 match self . input_mode {
559556 InputMode :: Normal | InputMode :: LiveFull => {
0 commit comments