keymap_russian.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #ifndef KEYMAP_RUSSIAN_H
  2. #define KEYMAP_RUSSIAN_H
  3. #include "keymap.h"
  4. // rename ruble and numero in keymap_cyrillic.c
  5. // Normal Chracters // reg SHIFT
  6. #define RU_A KC_F // а and А
  7. #define RU_BE KC_COMM // б and Б
  8. #define RU_VE KC_D // в and В
  9. #define RU_GHE KC_U // г and Г
  10. #define RU_DE KC_L // д and Д
  11. #define RU_IE KC_T // е and Е
  12. #define RU_IO KC_GRV // ё and Ё
  13. #define RU_ZHE KC_SCLN // ж and Ж
  14. #define RU_ZE KC_P // з and З
  15. #define RU_I KC_B // и and И
  16. #define RU_SRT_I KC_Q // й and Й
  17. #define RU_KA KC_R // к and К
  18. #define RU_EL KC_K // л and Л
  19. #define RU_EM KC_V // м and М
  20. #define RU_EN KC_Y // н and Н
  21. #define RU_O KC_J // о and О
  22. #define RU_PE KC_G // п and П
  23. #define RU_ER KC_H // р and Р
  24. #define RU_ES KC_C // с and С
  25. #define RU_TE KC_N // т and Т
  26. #define RU_U KC_E // у and У
  27. #define RU_EF KC_A // ф and Ф
  28. #define RU_HA KC_LBRC // х and Х
  29. #define RU_TSE KC_W // ц and Ц
  30. #define RU_CHE KC_X // ч and Ч
  31. #define RU_SHA KC_I // ш and Ш
  32. #define RU_SHCHA KC_O // щ and Щ
  33. #define RU_HSIGN KC_RBRC // ъ and Ъ
  34. #define RU_YERU KC_S // ы and Ы
  35. #define RU_SSIGN KC_M // ь and Ь
  36. #define RU_E KC_QUOT // э and Э
  37. #define RU_YU KC_DOT // ю and Ю
  38. #define RU_YA KC_Z // я and Я
  39. #define RU_1 KC_1 // 1 and !
  40. #define RU_2 KC_2 // 2 and "
  41. #define RU_3 KC_3 // 3 and №
  42. #define RU_4 KC_4 // 4 and ;
  43. #define RU_5 KC_5 // 5 and %
  44. #define RU_6 KC_6 // 6 and :
  45. #define RU_7 KC_7 // 7 and ?
  46. #define RU_8 KC_8 // 8 and *
  47. #define RU_9 KC_9 // 9 and (
  48. #define RU_0 KC_0 // 0 and )
  49. #define RU_MINS KC_MINS // - and _
  50. #define RU_EQL KC_EQL // = and +
  51. #define RU_BSLS KC_BSLS // \ and /
  52. #define RU_DOT KC_SLSH // . and ,
  53. // Shifted Chracters
  54. #define RU_EXLM LSFT(RU_1) // !
  55. #define RU_DQUT LSFT(RU_2) // "
  56. #define RU_NMRO LSFT(RU_3) // №
  57. #define RU_SCLN LSFT(RU_4) // ;
  58. #define RU_PERC LSFT(RU_5) // %
  59. #define RU_COLN LSFT(RU_6) // :
  60. #define RU_QUES LSFT(RU_7) // ?
  61. #define RU_ASTR LSFT(RU_8) // *
  62. #define RU_LPRN LSFT(RU_9) // (
  63. #define RU_RPRN LSFT(RU_0) // )
  64. #define RU_UNDR LSFT(RU_MINS) // _
  65. #define RU_PLUS LSFT(RU_EQL) // +
  66. #define RU_SLSH LSFT(RU_BSLS) // /
  67. #define RU_COMM LSFT(RU_DOT) // ,
  68. // Alt Gr-ed characters
  69. #define RU_RUBL RALT(RU_8) // ₽
  70. #endif