mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Implement more keyboard shortcuts
This commit is contained in:
@@ -26,21 +26,29 @@ class RootSplitViewController: UISplitViewController {
|
||||
}
|
||||
|
||||
@objc func nextUnread(_ sender: Any?) {
|
||||
coordinator.selectNextUnread()
|
||||
}
|
||||
|
||||
@objc func markRead(_ sender: Any?) {
|
||||
coordinator.markAsReadForCurrentArticle()
|
||||
}
|
||||
|
||||
@objc func markUnreadAndGoToNextUnread(_ sender: Any?) {
|
||||
coordinator.markAsUnreadForCurrentArticle()
|
||||
coordinator.selectNextUnread()
|
||||
}
|
||||
|
||||
@objc func markAllAsReadAndGoToNextUnread(_ sender: Any?) {
|
||||
coordinator.markAllAsReadInTimeline()
|
||||
coordinator.selectNextUnread()
|
||||
}
|
||||
|
||||
@objc func markOlderArticlesAsRead(_ sender: Any?) {
|
||||
coordinator.markAsReadOlderArticlesInTimeline()
|
||||
}
|
||||
|
||||
@objc func markUnread(_ sender: Any?) {
|
||||
coordinator.markAsUnreadForCurrentArticle()
|
||||
}
|
||||
|
||||
@objc func goToPreviousSubscription(_ sender: Any?) {
|
||||
|
||||
Reference in New Issue
Block a user