KLL Compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

md1Action.kll 523B

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";