Accelerator
Define keyboard shortcuts.
Accelerators are strings that can contain multiple modifiers and a single key code,
combined by the + character, and are used to define keyboard shortcuts
throughout your application. Accelerators are case insensitive.
Examples:
- CommandOrControl+A
- CommandOrControl+Shift+Z
Shortcuts are registered with the globalShortcut module
using the register
method, i.e.
const { app, globalShortcut } = require('electron')
app.whenReady().then(() => {
  // Register a 'CommandOrControl+Y' shortcut listener.
  globalShortcut.register('CommandOrControl+Y', () => {
    // Do stuff when Y and either Command/Control is pressed.
  })
})
Platform notice
On Linux and Windows, the Command key does not have any effect so
use CommandOrControl which represents Command on macOS and Control on
Linux and Windows to define some accelerators.
Use Alt instead of Option. The Option key only exists on macOS, whereas
the Alt key is available on all platforms.
The Super (or Meta) key is mapped to the Windows key on Windows and Linux and
Cmd on macOS.
Available modifiers
- Command(or- Cmdfor short)
- Control(or- Ctrlfor short)
- CommandOrControl(or- CmdOrCtrlfor short)
- Alt
- Option
- AltGr
- Shift
- Super
- Meta
Available key codes
- 0to- 9
- Ato- Z
- F1to- F24
- Various Punctuation: ),!,@,#,$,%,^,&,*,(,:,;,:,+,=,<,,,_,-,>,.,?,/,~,`,{,],[,|,\,},"
- Plus
- Space
- Tab
- Capslock
- Numlock
- Scrolllock
- Backspace
- Delete
- Insert
- Return(or- Enteras alias)
- Up,- Down,- Leftand- Right
- Homeand- End
- PageUpand- PageDown
- Escape(or- Escfor short)
- VolumeUp,- VolumeDownand- VolumeMute
- MediaNextTrack,- MediaPreviousTrack,- MediaStopand- MediaPlayPause
- PrintScreen
- NumPad Keys
- num0-- num9
- numdec- decimal key
- numadd- numpad- +key
- numsub- numpad- -key
- nummult- numpad- *key
- numdiv- numpad- ÷key