Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2023-12-12 | 818 Bytes | |
v3.0.0 source code.tar.gz | 2023-12-12 | 123.4 kB | |
v3.0.0 source code.zip | 2023-12-12 | 131.4 kB | |
Totals: 3 Items | 255.6 kB | 0 |
Breaking changes
- When
Shift
is used to type an uppercase letter,Shift+
will now be included in the hotkey string (https://github.com/github/hotkey/pull/115). This means authors will need to update hotkey strings which contain capital letters to addShift
. For example,A
becomesShift+A
,Mod+U
becauseMod+Shift+U
. - The behavior of
Mod
andMeta
has been made more consistent: on MacOS, when these keys are used withShift
, the resulting key name is now normalized to uppercase (https://github.com/github/hotkey/pull/116). This allows using the sameMod
shortcuts on Windows, Linux, and MacOS, but may require updating some hotkey strings to use uppercase letters. For example,Meta+Shift+a
becomesMeta+Shift+A
, andMod+Shift+A
will work as expected across all operating systems.