summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--viewfeed.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index d3a2c00c1..cc3fa3b67 100644
--- a/README
+++ b/README
@@ -34,7 +34,7 @@ Interface:
"a" hides or shows only unread feeds in the feedlist;
"j" move to previous feed
"k" move to next feed
- "s" star/unstar selected article
+ "s" star/unstar selected article(s)
Requirements:
diff --git a/viewfeed.js b/viewfeed.js
index 775b40f13..68555bde0 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -219,7 +219,7 @@ function localHotkeyHandler(keycode) {
// }
if (keycode == 83) { // s
- if (active_post_id) toggleMark(active_post_id);
+ selectionToggleMarked();
}
// alert("KC: " + keycode);