summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorltGuillaume <[email protected]>2019-04-12 07:28:45 +0000
committerltGuillaume <[email protected]>2019-04-12 07:28:45 +0000
commit4c72d3b4fc1988fae6fd9890a198b162c30ead15 (patch)
treed6e25ea257ff9e1eb489ffb38f19803df652cde6 /js/tt-rss.js
parent6fbf349155ff92c643d835246016a76351417cf1 (diff)
Add keyboard shortcut 'g r': Go to Recently read
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index a46fc17e4..eaedecd22 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -416,6 +416,9 @@ require(["dojo/_base/kernel",
dijit.byId("feedTree").collapseCat(Feeds.getActive());
}
};
+ this.hotkey_actions["goto_read"] = function () {
+ Feeds.open({feed: -6});
+ };
this.hotkey_actions["goto_all"] = function () {
Feeds.open({feed: -4});
};