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.

63 lines
1.8 KiB

  1. /* Copyright 2021 Joshua T.
  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 QMK_KEYBOARD_H
  18. // Custom keycodes and macros
  19. enum userspace_custom_keycodes {
  20. QK_MAKE = SAFE_RANGE, // QMK make command
  21. QK_FLSH, // QMK flash command
  22. QK_VERS, // QMK version
  23. // Programming macros
  24. PRG_EQ, // ==
  25. PRG_NE, // !=
  26. PRG_GEQ, // >=
  27. PRG_LEQ, // <=
  28. PRG_ARR, // =>
  29. PS_ITEM, // $_ (PowerShell - $PSItem variable)
  30. FS_PIPE, // |> (F# pipe operator)
  31. FS_ARR, // -> (F# lambda / pattern matching)
  32. SHEBANG, // #!
  33. // USER_CAPS_WORD_ENABLE
  34. CAPWORD,
  35. #ifdef USER_NUM_WORD_ENABLE
  36. NUMWORD,
  37. #endif
  38. // USER_ENABLE_CUSTOM_SHIFT_CODES
  39. // Custom characters that send different symbols than usual when shifted
  40. KCC_COM, // , or !
  41. KCC_DOT, // . or @
  42. KCC_QUO, // ' or ~
  43. // USER_MOUSE_JIGGLE_ENABLE
  44. MS_JIGL,
  45. // USER_ENABLE_SUPER_ALT_TAB
  46. SALTTAB,
  47. // USER_ENABLE_SECRETS
  48. K_SECR1,
  49. K_SECR2,
  50. K_SECR3,
  51. K_SECR4,
  52. DYNAMIC_MACRO_RANGE
  53. };