[text-view] swap the rotation of f/F to something more natural

This commit is contained in:
Timothy Stack 2016-04-26 21:25:28 -07:00
parent 4a0d2c0be3
commit 1477c2ae51
1 changed files with 2 additions and 2 deletions

View File

@ -400,7 +400,7 @@ void handle_paging_key(int ch)
textfile_sub_source &tss = lnav_data.ld_text_source;
if (!tss.empty()) {
tss.rotate_right();
tss.rotate_left();
redo_search(LNV_TEXT);
}
}
@ -414,7 +414,7 @@ void handle_paging_key(int ch)
textfile_sub_source &tss = lnav_data.ld_text_source;
if (!tss.empty()) {
tss.rotate_left();
tss.rotate_right();
redo_search(LNV_TEXT);
}
}