mod_darwin.go 378 B

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