mirror of
https://github.com/tstack/lnav
synced 2024-11-03 23:15:38 +00:00
[text-view] swap the rotation of f/F to something more natural
This commit is contained in:
parent
4a0d2c0be3
commit
1477c2ae51
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user