Created
September 30, 2010 21:50
-
-
Save cabo/605385 to your computer and use it in GitHub Desktop.
Making Emacs German-friendly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(set-language-info-alist | |
"German8" '((tutorial . "TUTORIAL.de") | |
(charset unicode) | |
(coding-system utf-8 iso-latin-1 iso-latin-9) | |
(coding-priority utf-8 iso-latin-1) | |
(nonascii-translation . iso-8859-1) | |
(input-method . "german-postfix") | |
(unibyte-display . iso-latin-1) | |
(sample-text . "\ | |
German (Deutsch Nord) Guten Tag | |
German (Deutsch Süd) Grüß Gott") | |
(documentation . "\ | |
This language environment is a hacked Latin-1, | |
but sets the default input method to \"german-postfix\". | |
Additionally, it selects the German tutorial.")) | |
'("European")) | |
(custom-set-variables | |
;; ... | |
'(current-language-environment "German8") | |
;; ... | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment