s hotkey stars/unstars selection
This commit is contained in:
parent
6aece85373
commit
3a95520247
2
README
2
README
|
@ -34,7 +34,7 @@ Interface:
|
||||||
"a" hides or shows only unread feeds in the feedlist;
|
"a" hides or shows only unread feeds in the feedlist;
|
||||||
"j" move to previous feed
|
"j" move to previous feed
|
||||||
"k" move to next feed
|
"k" move to next feed
|
||||||
"s" star/unstar selected article
|
"s" star/unstar selected article(s)
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
|
|
||||||
|
|
|
@ -219,7 +219,7 @@ function localHotkeyHandler(keycode) {
|
||||||
// }
|
// }
|
||||||
|
|
||||||
if (keycode == 83) { // s
|
if (keycode == 83) { // s
|
||||||
if (active_post_id) toggleMark(active_post_id);
|
selectionToggleMarked();
|
||||||
}
|
}
|
||||||
|
|
||||||
// alert("KC: " + keycode);
|
// alert("KC: " + keycode);
|
||||||
|
|
Loading…
Reference in New Issue