mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-18 04:41:30 +00:00
some new hotkeys
This commit is contained in:
12
tt-rss.js
12
tt-rss.js
@@ -264,12 +264,18 @@ function localHotkeyHandler(keycode) {
|
||||
return moveToPost('prev');
|
||||
} */
|
||||
|
||||
if (keycode == 82) {
|
||||
if (keycode == 82) { // r
|
||||
return scheduleFeedUpdate(true);
|
||||
}
|
||||
|
||||
if (keycode == 85) {
|
||||
return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
|
||||
if (keycode == 85) { // u
|
||||
if (getActiveFeedId()) {
|
||||
return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
|
||||
}
|
||||
}
|
||||
|
||||
if (keycode == 65) { // a
|
||||
return toggleDispRead();
|
||||
}
|
||||
|
||||
// notify("KC: " + keycode);
|
||||
|
||||
Reference in New Issue
Block a user