1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-03 03:33:36 +00:00
Dotfiles/home/spacemacs/russian-no-windows.el

122 lines
1.6 KiB
EmacsLisp
Raw Normal View History

2021-04-10 23:37:04 +00:00
(define-key key-translation-map (kbd "H-8") (kbd ";"))
(quail-define-package
"russian-no-windows" "Russian" "RU" nil
"ЙЦУКЕН Russian computer layout"
nil t t t t nil nil nil nil nil t)
;; 1! 2" 3№ 4% 5: 6, 7. 8; 9( 0) -_ =+ \/ ёЁ
;; Й Ц У К Е Н Г Ш Щ З Х Ъ
;; Ф Ы В А П Р О Л Д Ж Э
;; Я Ч С М И Т Ь Б Ю /?
(quail-define-rules
("±" ?<)
("§" ?>)
("1" ?1)
("2" ?2)
("3" ?3)
("4" ?4)
("5" ?5)
("6" ?6)
("7" ?7)
("8" ?8)
("9" ?9)
("0" ?0)
("-" ?-)
("=" ?=)
("|" )
("`" ?`)
("q" )
("w" )
("e" ?у)
("r" )
("t" ?е)
("y" )
("u" ?г)
("i" )
("o" )
("p" )
("[" ?х)
("]" )
("a" )
("s" )
("d" )
("f" ?а)
("g" ?п)
("h" ?р)
("j" ?о)
("k" )
("l" )
(";" )
("'" )
("\\" ?\ё)
("z" )
("x" )
("c" ?с)
("v" )
("b" )
("n" )
("m" )
("," ?б)
("." )
("/" ?/)
("!" ?!)
("@" ?\")
("#" ?№)
("$" ?\%)
("%" ?:)
("^" ?,)
("&" ?.)
;; ("*" ?\;)
("*" ?*)
("(" ?()
(")" ?))
("_" ?_)
("+" ?+)
("~" ?~)
("Q" )
("W" )
("E" ?У)
("R" ?К)
("T" ?Е)
("Y" ?Н)
("U" )
("I" )
("O" )
("P" ?З)
("{" ?Х)
("}" )
("A" )
("S" )
("D" ?В)
("F" ?А)
("G" )
("H" ?Р)
("J" ?О)
("K" )
("L" )
(":" )
("\"" )
("|" )
("Z" )
("X" )
("C" ?С)
("V" ?М)
("B" )
("N" ?Т)
("M" ?Ь)
("<" )
(">" )
("?" ??))
;; Local Variables:
;; coding: utf-8
;; End:
;;; russian-nowinkeys.el ends here
(provide 'russian-no-windows)
@bravosierrasierra