twschum.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #pragma once
  2. #include <stdarg.h>
  3. #include "quantum.h"
  4. #include "xtonhasvim.h"
  5. /**************************
  6. * QMK Features Used
  7. **************************
  8. * RGBLIGHT_ENABLE
  9. * - Adds layer indication via RGB underglow
  10. * - see the `layer_definitions` enum and following _*_HSV #defines
  11. *
  12. *
  13. *
  14. **************************
  15. * Custom Feature Flags
  16. **************************
  17. *
  18. * TWSCHUM_TAPPING_CTRL_PREFIX
  19. * - Adds feature that makes sending nested sequences of C-a, C-b[, C-b, ...]
  20. * as simple as C-a b [b ...]
  21. * - Not necessarily super useful outside specialized nested tmux sessions,
  22. * but it was a fun state-machine to build
  23. *
  24. * TWSCHUM_VIM_LAYER
  25. * - Fork of xtonhasvim, adding vim-emulation
  26. *
  27. * TWSCHUM_IS_MAC
  28. * - Flag for handling media keys and other settings between OSX and Win/Unix
  29. * without having to include bootmagic
  30. *
  31. **************************
  32. * Features Wishlist
  33. **************************
  34. * use VIM_Q as macro recorder!
  35. * Dynamic macros
  36. * Leader functions
  37. * Uniicode leader commands??? (symbolic unicode)
  38. * Mac mode vs not: -probably bootmagic or use default with dynamic swap out here
  39. * KC_MFFD(KC_MEDIA_FAST_FORWARD) and KC_MRWD(KC_MEDIA_REWIND) instead of KC_MNXT and KC_MPRV
  40. */
  41. /* Each layer gets a color, overwritable per keyboard */
  42. enum layers_definitions {
  43. _Base,
  44. _Vim,
  45. _Fn,
  46. _Nav,
  47. _Num,
  48. _Cfg,
  49. _None,
  50. };
  51. #ifdef RGBLIGHT_ENABLE
  52. #define _Base_HSV_ON HSV_WHITE
  53. #define _Base_HSV_OFF 0, 0, 0
  54. #define _Vim_HSV HSV_ORANGE
  55. #define _Fn_HSV HSV_GREEN
  56. #define _Nav_HSV HSV_AZURE
  57. #define _Num_HSV HSV_GOLD
  58. #define _Cfg_HSV HSV_RED
  59. #define _None_HSV HSV_WHITE
  60. #endif
  61. enum extra_keycodes {
  62. TWSCHUM_START = VIM_SAFE_RANGE,
  63. KC_MAKE, // types the make command for this keyboard
  64. #ifdef TWSCHUM_TAPPING_CTRL_PREFIX
  65. CTRL_A,
  66. CTRL_B,
  67. EN_CTRL_SHORTCUTS,
  68. #endif
  69. #ifdef RGBLIGHT_ENABLE
  70. TG_LAYER_RGB, // Toggle between standard RGB underglow, and RGB underglow to do layer indication
  71. TG_L0_RGB, // Toggle color on or off of layer0
  72. #endif
  73. SALT_CMD, // macro
  74. LESS_PD, // macro
  75. CODE_PASTE, // macro
  76. KEYMAP_SAFE_RANGE, // range to start for the keymap
  77. };
  78. #define SALT_CMD_MACRO "sudo salt \\* cmd.run ''"SS_TAP(X_LEFT)
  79. #define LESS_PD_MACRO "sudo less /pipedream/cache/"
  80. // TODO mac vs linux
  81. #define CODE_PASTE_MACRO SS_LSFT("\n")"```"SS_LSFT("\n")SS_LALT("v")SS_LSFT("\n")"```"
  82. /* PP_NARG macro returns the number of arguments passed to it.
  83. * https://groups.google.com/forum/#!topic/comp.std.c/d-6Mj5Lko_s
  84. */
  85. #define PP_NARG(...) PP_NARG_(__VA_ARGS__,PP_RSEQ_N())
  86. #define PP_NARG_(...) PP_ARG_N(__VA_ARGS__)
  87. #define PP_MAX_ARGS 64
  88. #define PP_ARG_N( \
  89. _1, _2, _3, _4, _5, _6, _7, _8, _9,_10, \
  90. _11,_12,_13,_14,_15,_16,_17,_18,_19,_20, \
  91. _21,_22,_23,_24,_25,_26,_27,_28,_29,_30, \
  92. _31,_32,_33,_34,_35,_36,_37,_38,_39,_40, \
  93. _41,_42,_43,_44,_45,_46,_47,_48,_49,_50, \
  94. _51,_52,_53,_54,_55,_56,_57,_58,_59,_60, \
  95. _61,_62,_63,N,...) N
  96. #define PP_RSEQ_N() 63,62,61,60, \
  97. 59,58,57,56,55,54,53,52,51,50, \
  98. 49,48,47,46,45,44,43,42,41,40, \
  99. 39,38,37,36,35,34,33,32,31,30, \
  100. 29,28,27,26,25,24,23,22,21,20, \
  101. 19,18,17,16,15,14,13,12,11,10, \
  102. 9,8,7,6,5,4,3,2,1,0
  103. #define send_keys(...) send_n_keys(PP_NARG(__VA_ARGS__), __VA_ARGS__)
  104. static inline void send_n_keys(int n, ...) {
  105. uint8_t i = 0;
  106. uint16_t keycodes[PP_MAX_ARGS];
  107. va_list keys;
  108. va_start(keys, n);
  109. for (; i < n; ++i) {
  110. keycodes[i] = (uint16_t)va_arg(keys, int); // cast suppresses warning
  111. register_code(keycodes[i]);
  112. }
  113. for (; n > 0; --n) {
  114. unregister_code(keycodes[n-1]);
  115. }
  116. va_end(keys);
  117. }
  118. #define repeat_send_keys(n, ...) {for (int i=0; i < n; ++i) {send_keys(__VA_ARGS__);}}
  119. /* State functions for nested c-a & c-b leader keystrokes */
  120. struct Tapping_ctrl_key_t {
  121. bool down;
  122. int8_t count;
  123. const uint16_t keycode;
  124. };