Shortcuts: close tab keyboard shortcut

This commit is contained in:
James Magahern
2020-11-10 11:57:40 -06:00
parent 5e0f1d252a
commit 9344e3c32d
3 changed files with 24 additions and 0 deletions

View File

@@ -59,6 +59,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
action: #selector(ShortcutResponder.previousTab)
),
// Close tab
UIKeyCommand(
modifiers: [.command], input: "W",
title: "Close Tab",
action: #selector(ShortcutResponder.closeTab)
),
// Next Tab
UIKeyCommand(
modifiers: [.command, .shift], input: "]",