mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 10:45:56 +00:00
add hotkeys J/K to move between unread feeds
This commit is contained in:
14
js/App.js
14
js/App.js
@@ -944,6 +944,13 @@ const App = {
|
||||
if (feed !== false)
|
||||
Feeds.open({feed: feed, is_cat: is_cat, delayed: true})
|
||||
};
|
||||
this.hotkey_actions["next_unread_feed"] = () => {
|
||||
const [feed, is_cat] = Feeds.getNextFeed(
|
||||
Feeds.getActive(), Feeds.activeIsCat(), true);
|
||||
|
||||
if (feed !== false)
|
||||
Feeds.open({feed: feed, is_cat: is_cat, delayed: true})
|
||||
};
|
||||
this.hotkey_actions["prev_feed"] = () => {
|
||||
const [feed, is_cat] = Feeds.getPreviousFeed(
|
||||
Feeds.getActive(), Feeds.activeIsCat());
|
||||
@@ -951,6 +958,13 @@ const App = {
|
||||
if (feed !== false)
|
||||
Feeds.open({feed: feed, is_cat: is_cat, delayed: true})
|
||||
};
|
||||
this.hotkey_actions["prev_unread_feed"] = () => {
|
||||
const [feed, is_cat] = Feeds.getPreviousFeed(
|
||||
Feeds.getActive(), Feeds.activeIsCat(), true);
|
||||
|
||||
if (feed !== false)
|
||||
Feeds.open({feed: feed, is_cat: is_cat, delayed: true})
|
||||
};
|
||||
this.hotkey_actions["next_article_or_scroll"] = (event) => {
|
||||
if (this.isCombinedMode())
|
||||
Headlines.scroll(Headlines.line_scroll_offset, event);
|
||||
|
||||
Reference in New Issue
Block a user