KLL Compiler
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

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