forked from joejulian/gio
d293dfe604
ModCtrl is the physical Ctrl key, ModShortcut is the virtual "shortcut" modifier, which is Ctrl on most platforms, Command on Apple platforms. Updates #59 Signed-off-by: Elias Naur <mail@eliasnaur.com>
8 lines
205 B
Go
8 lines
205 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
package key
|
|
|
|
// ModShortcut is the platform's shortcut modifier, usually the Ctrl
|
|
// key. On Apple platforms it is the Cmd key.
|
|
const ModShortcut = ModCommand
|