Add search articles keyboard shortcut and make search work in three panel mode

This commit is contained in:
Maurice Parker
2019-09-07 09:01:29 -05:00
parent 4184246e42
commit ec4a6f3e0a
3 changed files with 17 additions and 11 deletions

View File

@@ -146,6 +146,9 @@ private extension KeyboardManager {
let openInBrowserTitle = NSLocalizedString("Open In Browser", comment: "Open In Browser")
keys.append(createKeyCommand(title: openInBrowserTitle, action: "openInBrowser:", input: UIKeyCommand.inputRightArrow, modifiers: [.command]))
let articleSearchTitle = NSLocalizedString("Article Search", comment: "Article Search")
keys.append(createKeyCommand(title: articleSearchTitle, action: "articleSearch:", input: "f", modifiers: [.command, .shift]))
return keys
}