KLL Compiler
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

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