tweaks: reshuffle some lines, to have the same order as elsewhere
parent
2a4d338d97
commit
23c8ef70aa
|
@ -458,21 +458,6 @@ functionptrtype parse_browser_input(int *kbinput)
|
||||||
return do_page_up;
|
return do_page_up;
|
||||||
case ' ':
|
case ' ':
|
||||||
return do_page_down;
|
return do_page_down;
|
||||||
case '?':
|
|
||||||
return do_help_void;
|
|
||||||
case 'E':
|
|
||||||
case 'e':
|
|
||||||
case 'Q':
|
|
||||||
case 'q':
|
|
||||||
case 'X':
|
|
||||||
case 'x':
|
|
||||||
return do_exit;
|
|
||||||
case 'G':
|
|
||||||
case 'g':
|
|
||||||
return goto_dir_void;
|
|
||||||
case 'S':
|
|
||||||
case 's':
|
|
||||||
return do_enter;
|
|
||||||
case 'W':
|
case 'W':
|
||||||
case 'w':
|
case 'w':
|
||||||
case '/':
|
case '/':
|
||||||
|
@ -481,6 +466,21 @@ functionptrtype parse_browser_input(int *kbinput)
|
||||||
return do_findprevious;
|
return do_findprevious;
|
||||||
case 'n':
|
case 'n':
|
||||||
return do_findnext;
|
return do_findnext;
|
||||||
|
case 'G':
|
||||||
|
case 'g':
|
||||||
|
return goto_dir_void;
|
||||||
|
case '?':
|
||||||
|
return do_help_void;
|
||||||
|
case 'S':
|
||||||
|
case 's':
|
||||||
|
return do_enter;
|
||||||
|
case 'E':
|
||||||
|
case 'e':
|
||||||
|
case 'Q':
|
||||||
|
case 'q':
|
||||||
|
case 'X':
|
||||||
|
case 'x':
|
||||||
|
return do_exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return func_from_key(kbinput);
|
return func_from_key(kbinput);
|
||||||
|
|
Loading…
Reference in New Issue