From 1477c2ae51fc75f8b4dce04ce260978f4e291119 Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Tue, 26 Apr 2016 21:25:28 -0700 Subject: [PATCH] [text-view] swap the rotation of f/F to something more natural --- src/hotkeys.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hotkeys.cc b/src/hotkeys.cc index 7a4f0ff2..7a508f82 100644 --- a/src/hotkeys.cc +++ b/src/hotkeys.cc @@ -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); } }