summaryrefslogtreecommitdiff
path: root/plugins/hotkeys_swap_jk
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-05-20 20:32:00 +0300
committerAndrew Dolgov <[email protected]>2021-05-20 20:32:00 +0300
commit8574532b7f57593af41719c478258fc0024cd523 (patch)
tree76d5c025895eeba2b6c5f7e8e97ae6c1ab644bfa /plugins/hotkeys_swap_jk
parent4795c4a2a98a8c041bd8724aee880d0b3b6eda36 (diff)
add hotkeys J/K to move between unread feeds
Diffstat (limited to 'plugins/hotkeys_swap_jk')
-rw-r--r--plugins/hotkeys_swap_jk/init.php2
1 files changed, 2 insertions, 0 deletions
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;
}