1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

Add comments link keyboard shortcut

This commit is contained in:
Richard Schneider 2020-01-07 00:02:02 -06:00 committed by Frédéric Guillot
parent e2315e6a54
commit 6ebb29cd22
18 changed files with 84 additions and 20 deletions

View file

@ -20,6 +20,8 @@ document.addEventListener("DOMContentLoaded", function () {
keyboardHandler.on("o", () => openSelectedItem());
keyboardHandler.on("v", () => openOriginalLink());
keyboardHandler.on("V", () => openOriginalLink(true));
keyboardHandler.on("c", () => openCommentLink());
keyboardHandler.on("C", () => openCommentLink(true));
keyboardHandler.on("m", () => handleEntryStatus());
keyboardHandler.on("A", () => markPageAsRead());
keyboardHandler.on("s", () => handleSaveEntry());