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.

58 lines
1.2 KiB

  1. /* Copyright 2021 Kyle Xiao
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #include "quantum.h"
  18. #include "tap_dance.h"
  19. #ifdef TAP_DANCE_ENABLE
  20. // Tap Dance declarations for use in keymaps
  21. enum hold_ctl_enum {
  22. HC_A = 1,
  23. HC_B,
  24. HC_C,
  25. HC_D,
  26. HC_E,
  27. HC_F,
  28. HC_G,
  29. HC_H,
  30. HC_I,
  31. HC_J,
  32. HC_K,
  33. HC_L,
  34. HC_M,
  35. HC_N,
  36. HC_O,
  37. HC_P,
  38. HC_Q,
  39. HC_R,
  40. HC_S,
  41. HC_T,
  42. HC_U,
  43. HC_V,
  44. HC_W,
  45. HC_X,
  46. HC_Y,
  47. HC_Z,
  48. HC_BSPC,
  49. HC_DEL,
  50. HC_LEFT,
  51. HC_RGHT,
  52. TH_ESC_TAB,
  53. TH_HOME_BSLS,
  54. TH_END_PIPE,
  55. TH_QUOT_GRV,
  56. };
  57. #endif