Browse Source

Add alt+left and alt+right shortcuts for switching tabs.

pull/3202/head
TheGoddessInari 6 years ago
parent
commit
653bb105e8
No known key found for this signature in database
GPG Key ID: 1209B1B7632D69A
  1. 14
      electron/menu.js

14
electron/menu.js

@ -206,6 +206,20 @@ module.exports = function(config) {
sendAction('tabFocusPrevious');
}
},
{
label: `Next Tab`,
accelerator: 'Alt+Right',
click() {
sendAction('tabFocusNext');
}
},
{
label: `Previous Tab`,
accelerator: 'Alt+Left',
click() {
sendAction('tabFocusPrevious');
}
},
{
label: `Do Not Disturb`,
accelerator: 'Alt+F1',

Loading…
Cancel
Save