csc027.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #pragma once
  2. #include "quantum.h"
  3. #include "defines.h"
  4. enum custom_keycodes {
  5. // Layer Keycodes
  6. LOWER = SAFE_RANGE,
  7. RAISE,
  8. // Git Keycodes
  9. GIT_ADD, // Add
  10. GIT_BRC, // Branch
  11. GIT_CHK, // Checkout
  12. GIT_CHR, // Cherry-Pick
  13. GIT_CMT, // Commit
  14. GIT_DIF, // Diff
  15. GIT_FTC, // Fetch
  16. GIT_GRP, // Grep
  17. GIT_LOG, // Log
  18. GIT_INT, // Init
  19. GIT_MRG, // Merge
  20. GIT_MOV, // Move (mv)
  21. GIT_PSH, // Push
  22. GIT_PUL, // Pull
  23. GIT_RBS, // Rebase
  24. GIT_RMT, // Remote
  25. GIT_RST, // Reset
  26. GIT_SHW, // Show
  27. GIT_STH, // Stash
  28. GIT_STS, // Status
  29. GIT_TAG, // Tag
  30. // Remote Desktop
  31. MC_MRD7, // Minimize Remote Desktop on Windows 7
  32. MC_MRD8, // Minimize Remote Desktop on Windows 8+
  33. MC_ATRD // Switch windows on local machine from Remote Desktop on Windows
  34. };
  35. enum custom_layers {
  36. _QW = 0, // Qwerty
  37. _RS, // Raise
  38. _LW, // Lower
  39. _MS, // Mouse
  40. _GT, // Git
  41. _CN, // Convenience
  42. _GW, // Guild Wars 2
  43. _CS // Counter-Strike: Global Offensive
  44. };