Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created April 10, 2012 02:14
Show Gist options
  • Select an option

  • Save legumbre/2347925 to your computer and use it in GitHub Desktop.

Select an option

Save legumbre/2347925 to your computer and use it in GitHub Desktop.
leo-input-method.el
;;; leo-input-method.el
(quail-define-package
"spanish-leo-prefix" "Spanish" "leo>" t
"My spanish input-method."
nil t nil nil nil nil nil nil nil nil t)
(quail-define-rules
("'a" ?á)
("'e" ?é)
("'i" ?í)
("'o" ?ó)
("'u" ?ú)
("~n" ?ñ)
("'A" ?Á)
("'E" ?É)
("'I" ?Í)
("'O" ?Ó)
("'U" ?Ú)
("~N" ?Ñ))
(provide 'leo-input-method)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment