1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:05:55 +00:00

add hotkeys J/K to move between unread feeds

This commit is contained in:
Andrew Dolgov
2021-05-20 20:32:00 +03:00
parent 4795c4a2a9
commit 8574532b7f
5 changed files with 30 additions and 9 deletions

View File

@@ -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;
}