The key combination of the hotkey, i.e. "Ctrl+T".
OptionalphaseControls the event phase at which the hotkey is triggered.
'capture': The hotkey fires before the event is sent to the renderer/page.
This is the only phase where the preventDefault property is effective.
'bubble': The hotkey fires after the page has processed the key event.
This behaves exactly like a standard JavaScript event listener attached to the window:
event.preventDefault() (on either keydown or keyup), this hotkey will not fire.Ctrl+Tab to switch tabs for which keyup/keydown do not fire in a web browser), that action takes precedence and this hotkey will not fire.OptionalpreventDetermines if the event should continue to the renderer.
true: The event is consumed immediately. It will never reach the renderer/page.false: The event is sent to the renderer after this hotkey executes.
A hotkey binding.