1
0
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:
Andrew Dolgov
2005-11-16 06:40:03 +01:00
parent cce41088c0
commit b623b3edcb
4 changed files with 51 additions and 9 deletions

View File

@@ -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);