KLL Compiler
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

123456789101112131415161718192021
  1. Name = md1Overlay;
  2. Version = 0.1;
  3. Author = "HaaTa (Jacob Alexander) 2015";
  4. KLL = 0.3c;
  5. # Modified Date
  6. Date = 2015-08-16;
  7. # Example of blocking ESC (0x29) when holding either Shift key
  8. # Currently, kll only supports numbers (this may be fixed in a future kll spec)
  9. U["LShift", "RShift"] : blockHold( 0x29 );
  10. U"Esc" : blockKey( 0x29 );
  11. # Now that Esc is blocked, it's possible to use this macro
  12. U["LShift", "RShift"] + U"Esc" : '~';
  13. U"Function2" : layerLock( 1 );
  14. U"Function3" : action1();
  15. U"Function4" : U"CapsLock";