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

Add keyboard shortcuts for scrolling to top/bottom of the item list

This commit is contained in:
Matt Behrens 2024-03-19 19:30:38 -07:00 committed by GitHub
parent fe8b7a907e
commit 1ea3953271
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 76 additions and 11 deletions

View file

@ -9,6 +9,8 @@ document.addEventListener("DOMContentLoaded", () => {
keyboardHandler.on("g f", goToFeedOrFeeds);
keyboardHandler.on("g c", () => goToPage("categories"));
keyboardHandler.on("g s", () => goToPage("settings"));
keyboardHandler.on("g g", () => goToPrevious(TOP));
keyboardHandler.on("G", () => goToNext(BOTTOM));
keyboardHandler.on("ArrowLeft", goToPrevious);
keyboardHandler.on("ArrowRight", goToNext);
keyboardHandler.on("k", goToPrevious);