mod.go 417 B

1234567891011121314
  1. // SPDX-License-Identifier: Unlicense OR MIT
  2. //go:build !darwin
  3. // +build !darwin
  4. package key
  5. // ModShortcut is the platform's shortcut modifier, usually the ctrl
  6. // modifier. On Apple platforms it is the cmd key.
  7. const ModShortcut = ModCtrl
  8. // ModShortcutAlt is the platform's alternative shortcut modifier,
  9. // usually the ctrl modifier. On Apple platforms it is the alt modifier.
  10. const ModShortcutAlt = ModCtrl