From 8574532b7f57593af41719c478258fc0024cd523 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 20 May 2021 20:32:00 +0300 Subject: add hotkeys J/K to move between unread feeds --- plugins/hotkeys_swap_jk/init.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins/hotkeys_swap_jk/init.php') diff --git a/plugins/hotkeys_swap_jk/init.php b/plugins/hotkeys_swap_jk/init.php index 19a3ab60a..ff45a65e4 100644 --- a/plugins/hotkeys_swap_jk/init.php +++ b/plugins/hotkeys_swap_jk/init.php @@ -18,7 +18,9 @@ class Hotkeys_Swap_JK extends Plugin { function hook_hotkey_map($hotkeys) { $hotkeys["j"] = "next_feed"; + $hotkeys["J"] = "next_unread_feed"; $hotkeys["k"] = "prev_feed"; + $hotkeys["K"] = "prev_unread_feed"; return $hotkeys; } -- cgit v1.2.3