summaryrefslogtreecommitdiff
path: root/plugins/hotkeys_swap_jk/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hotkeys_swap_jk/init.php')
-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;
}