KLL Compiler
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.

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