summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--help/3.php4
-rw-r--r--tt-rss.js8
2 files changed, 9 insertions, 3 deletions
diff --git a/help/3.php b/help/3.php
index c7a321b9d..320040568 100644
--- a/help/3.php
+++ b/help/3.php
@@ -33,10 +33,10 @@
<h2><?php echo __("Feed actions") ?></h2>
<table>
+ <tr><td class='n'>r</td><td><?php echo __("Update active feed") ?></td></tr>
+ <tr><td class='n'>R</td><td><?php echo __("Update all feeds") ?></td></tr>
<tr><td class='n'>f a</td><td><?php echo __("(Un)hide read feeds") ?></td></tr>
<tr><td class='n'>f s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
- <tr><td class='n'>f u</td><td><?php echo __("Update feed") ?></td></tr>
- <tr><td class='n'>f U</td><td><?php echo __("Update all feeds") ?></td></tr>
<tr><td class='n'>f e</td><td><?php echo __("Edit feed") ?></td></tr>
<tr><td class='n'>f c</td><td><?php echo __("Mark feed as read") ?></td></tr>
<tr><td class='n'>f C</td><td><?php echo __("Mark all feeds as read") ?></td></tr>
diff --git a/tt-rss.js b/tt-rss.js
index 65ed07edb..c86045840 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -986,10 +986,16 @@ function hotkey_handler(e) {
return displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
}
- if (keycode == 82) { // r
+ if (keycode == 82 && shift_key) { // R
return scheduleFeedUpdate(true);
}
+ if (keycode == 82) { // r
+ if (getActiveFeedId()) {
+ return viewfeed(getActiveFeedId(), "ForceUpdate");
+ }
+ }
+
if (keycode == 74) { // j
var feed = getActiveFeedId();
var new_feed = getRelativeFeedId(feedlist, feed, 'prev');