diff --git a/help/3.php b/help/3.php index 97f91439c..d5c95c11f 100644 --- a/help/3.php +++ b/help/3.php @@ -18,6 +18,9 @@ u T o + P + N +

diff --git a/tt-rss.js b/tt-rss.js index 6dd342745..6ed29b5a1 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1010,6 +1010,16 @@ function hotkey_handler(e) { return; } + if (shift_key && (keycode == 78 || keycode == 40)) { // shift - n, down + catchupRelativeToArticle(1); + return false; + } + + if (shift_key && (keycode == 80 || keycode == 38)) { // shift - p, up + catchupRelativeToArticle(0); + return false; + } + if (keycode == 78 || keycode == 40) { // n, down if (typeof moveToPost != 'undefined') { moveToPost('next');