1234567891011 |
- // SPDX-License-Identifier: Unlicense OR MIT
- package key
- // ModShortcut is the platform's shortcut modifier, usually the ctrl
- // modifier. On Apple platforms it is the cmd key.
- const ModShortcut = ModCommand
- // ModShortcut is the platform's alternative shortcut modifier,
- // usually the ctrl modifier. On Apple platforms it is the alt modifier.
- const ModShortcutAlt = ModAlt
|