plus

operator fun plus(other: ModifierShortcut): Shortcut

This operator function enables the concatenation with additional modifier shortcuts:

Shortcut("F") + Keys.Alt
// or even
Shortcut("F") + Keys.Alt + Keys.Shift
// will already result in a `Shortcut`

See also