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.

131 lines
3.9 KiB

[Keymap] Add DZ60, Levinson keymaps, twschum user files (#7358) * Adds layout for DZ60rev2 plate B, options 4 and 10 * Use KC_TRANS for layer keys * Format layer0 with visual key size layout * Add RGB controls; add start description; add KC_LOCK * Update comments on rules.mk for DZ60 * Gets keymap compiling * Fix wiring for shift on row 3 * Hold a with other key to send Ctrl-A before other key * Adds compile-time defined mac-compatability media keycodes * Adds logic in place for capturing taps (w/ timeout) * Add send_keys(...) which can send up to 64 nested keycodes * Implement send_keys callable with n repeats * Tweaks some of the keymap * Add reset keycode; add disable to custom shortcuts * Adds a special "off" layer where bonus mod goes to layer 0, every other key KC_NO * Adjust timeout; mousekey settings * Changes layout of Home,End,PgUp/Dn on the dedicated arrow keys L1/L2 * PoC on rgb lighted layer indication * Refactors color table defines * Adds logic for controlling layer lights * Only change state on one side of the event lol * Switch back to Tapping Toggle for layer 4 * Add custom config file for keyboard; TT and mousekey settings * Code cleanup; starting to refactor special ctrl tapping keys functions * Move defines and reak out functions * Remove debugging light * Adjust keymaps; add enter * Adds a couple custom macros * Add simplified version of keymap to help debug issues * Adds basi numpad configuration for levinson keyboard half * Use ANSI ctrl key as layer 1 for better one hand (`) * Adapt to new 8bit hue from #5547; layer enum use everywhere * Move custom code out to users/ space * Flip col pins, move key assignments to "left hand" * Update readme * Implement placeholder macros * Notes * Reduce tapping time for SFT_T(/) * Adds vim features; refactors things * Adds fork of the vim features written by xton * Use correct backspace keycode * Add VIM_ESC * Add "OFF" to the RGB/HSV definitions * Clean up rules, use new "OFF" definition * Add windows KC_CALCULATOR key to numpad * Reformat layers with better guide; change layer names * Add sleep key * Change timeout delay * Add a "code paste" which surrounds a ^V with ``` * Try removing shift tap on rshift / * Update macros * Update the "code paste" macro * Update keymap with reset, calc, equals * Update keyboards/dz60/keymaps/twschum_b_4_10_simple/keymap.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update keyboards/dz60/keymaps/twschum_b_4_10/keymap.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update users/twschum/twschum.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update users/twschum/twschum.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Revert quantum/rgblight_list.h * Better name for split space layout; rename KEYMAP->LAYOUT * Rename KEYMAP->LAYOUT * Use simpler :flash command * Clean up layout files * Use qmk's MOD_MASK_CTRL * Sync lufa submodule * Cleanup from noroadsleft's PR comments * Modernize vim layer code
4 years ago
  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. };