From 94fd35fae4aa1adb25df098a9905a7db8294aca9 Mon Sep 17 00:00:00 2001 From: Kelly King Date: Tue, 15 Nov 2016 20:32:59 -0800 Subject: [PATCH] Add F6 shortcut for focusing the URL bar Fix #4464 Test plan: Open browser Hit F6 URL bar should get focus --- app/localShortcuts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/localShortcuts.js b/app/localShortcuts.js index 0074de9d1b2..a1a5efae45f 100644 --- a/app/localShortcuts.js +++ b/app/localShortcuts.js @@ -14,6 +14,7 @@ module.exports.register = (win) => { // the URL bar. In those cases it's acceptable for the individual components to // listen to the events. const simpleWebContentEvents = [ + ['F6', messages.SHORTCUT_FOCUS_URL], ['CmdOrCtrl+Shift+]', messages.SHORTCUT_NEXT_TAB], ['CmdOrCtrl+Shift+[', messages.SHORTCUT_PREV_TAB], ['CmdOrCtrl+Alt+Right', messages.SHORTCUT_NEXT_TAB],