diff --git a/help/3.php b/help/3.php index 0e20a8cf..633f5c90 100644 --- a/help/3.php +++ b/help/3.php @@ -41,8 +41,8 @@ f a f s f e - f c - f C + q + Q

diff --git a/tt-rss.js b/tt-rss.js index 3b16e13f..587ea198 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1092,6 +1092,20 @@ function hotkey_handler(e) { } } + if (keycode == 81 && shift_key) { // Q + if (typeof catchupAllFeeds != 'undefined') { + catchupAllFeeds(); + return false; + } + } + + if (keycode == 81) { // q + if (getActiveFeedId()) { + catchupCurrentFeed(); + return false; + } + } + } /* Prefix f */