what do the parameter values in AppleSymbolicHotKeys plist dict represent?

后端 未结 2 1159
甜味超标
甜味超标 2021-02-04 08:08

tl;dr

what does the first parameters value in com.apple.symbolichotkeys:AppleSymbolicHotKeys represent?

details...

the Apple

2条回答
  •  我寻月下人不归
    2021-02-04 08:49

    The numerical values in nrser's answer make more sense when viewed in hexadecimal form:

    0x000000 => "No modifier",
    0x020000 => "Shift",
    0x040000 => "Control",
    0x080000 => "Option",
    0x100000 => "Command",
    

    The others are simply bit-wise-ORs of the above values, for example:

    0x060000 => "Shift + Control",
    0x180000 => "Command + Option",
    

提交回复
热议问题