import { Trans } from "@lingui/react/macro" import { Anchor, Box, Kbd, Stack, Table } from "@mantine/core" import { useOs } from "@mantine/hooks" import { Constants } from "@/app/constants" export function KeyboardShortcutsHelp() { const isMacOS = useOs() === "macos" return ( Refresh R Open next entry J Open previous entry K Select next unread feed/category Shift + J Select previous unread feed/category Shift + K Set focus on next entry without opening it N Set focus on previous entry without opening it P Move the page down Space Move the page up Shift + Space Open/close current entry O , Enter Open current entry in a new tab V Open current entry in a new tab in the background B *, Middle click Toggle read status of current entry M , Swipe header to the left Toggle starred status of current entry S Mark all entries as read Shift + A Go to the All view G A Navigate to a subscription by entering its name {isMacOS ? Cmd : Ctrl} + K , G U Show entry menu (desktop) Right click Show native menu (desktop) Shift + Right click Show entry menu (mobile) Long press Toggle sidebar F Show keyboard shortcut help ?
* Browser extension required for Chrome
) }