* [sisyphus] Emacs и украинские буквы
@ 2003-04-05 6:54 Dmitry Malenko
2003-04-05 17:37 ` Maxim Tyurin
2003-04-07 11:45 ` [sisyphus] Emacs É ÕËÒÁÉÎÓËÉÅ ÂÕË×Ù Serhii Hlodin
0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Malenko @ 2003-04-05 6:54 UTC (permalink / raw)
To: sisyphus
Hello sisyphus,
Имеется Master 2.2. Стоит локаль ru_RU.KOI8-R, но с раскладкой rua.
При запуске Emacs в такой локали не вводятся украинские буквы. Если
ставить локаль uk_UA.KOI8-R, то буквы вводятся, но при этом шрифт не
содержит italic и bold. Пробовалось с разными Emacs*attributeFamily.
Стоят все (?) шрифты из Мастера.
Кто успешно юзает Emacs с украинским языком - отзовитесь :) Какой
шрифт надо поставть?
--
Best regards, Dmitry Malenko.
+----------------------------------------------------+
Registered Linux user #258004
ALT Linux Team http://www.altlinux.ru
+----------------------------------------------------+
Do you guys know what you're doing, or are you just hacking?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [sisyphus] Emacs и украинские буквы
2003-04-05 6:54 [sisyphus] Emacs и украинские буквы Dmitry Malenko
@ 2003-04-05 17:37 ` Maxim Tyurin
2003-04-07 11:45 ` [sisyphus] Emacs É ÕËÒÁÉÎÓËÉÅ ÂÕË×Ù Serhii Hlodin
1 sibling, 0 replies; 3+ messages in thread
From: Maxim Tyurin @ 2003-04-05 17:37 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1.1: Type: text/plain, Size: 1130 bytes --]
On Sat, Apr 05, 2003 at 09:54:21AM +0300, Dmitry Malenko wrote:
> Hello sisyphus,
>
> Имеется Master 2.2. Стоит локаль ru_RU.KOI8-R, но с раскладкой rua.
> При запуске Emacs в такой локали не вводятся украинские буквы. Если
> ставить локаль uk_UA.KOI8-R, то буквы вводятся, но при этом шрифт не
> содержит italic и bold. Пробовалось с разными Emacs*attributeFamily.
> Стоят все (?) шрифты из Мастера.
>
> Кто успешно юзает Emacs с украинским языком - отзовитесь :) Какой
> шрифт надо поставть?
Я пользуюсь
Все нормально с шрифтом Courier New от Monotype
Вот что у меня в ~/.Xdefaults
Emacs*Background: AntiqueWhite1
Emacs*Foreground: Black
Emacs*bitmapIcon: on
Emacs*XlwMenu.Background: AntiqueWhite3
Emacs*XlwMenu.Foreground: Black
Emacs*Dialog*Background: AntiqueWhite3
Emacs*Dialog*Foreground: Black
Emacs*font: -mrkooll-courier-medium-r-*-*-*-*-*-*-*-*-iso8859-5
Emacs.default.attributeFont: -mrkooll-courier-medium-r-*-*-*-*-*-*-*-*-iso8859-5
Emacs.italic.attributeFont: -mrkooll-courier-medium-i-*-*-*-*-*-*-*-*-iso8859-5
мой ~/.emacs в атаче
--
With Best Regards, Maxim Tyurin
JID: MrKooll@jabber.pibhe.com
[-- Attachment #1.2: .emacs --]
[-- Type: text/plain, Size: 2341 bytes --]
; Personal settings for Emacs.
; Personal X resources for Emacs can be set in ~/.Xdefaults.
; Look also at the global configuration in /etc/emacs/.
; Emacs has a customization menu, changes done there are written
; into this file.
; For example, to turn off the autostart of Flyspell, customize
; Data->"Text Mode Hook" item.
(set-language-environment "Cyrillic-KOI8")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Minimal settings for users of Emacs who work in
; Ukrainian (KOI8-U) environment.
;
; ALT Linux Team, February 2002.
; The following lines make the corresponding
; parameters independent of the current language-environment:
; if you change language-environment, they won't be changed;
; but if you comment out some of them, they will follow the
; language-environment parameter:
(set-terminal-coding-system 'koi8-u)
(set-keyboard-coding-system 'koi8-u)
; This could help for transferring data from bad old apps
;(set-selection-coding-system 'koi8-u)
; End of the language environment settings.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;(set-input-method "cyrillic-jcuken")
(set-input-method "cyrillic-ruskrainian");
(toggle-input-method)
(setq kill-whole-line t
default-major-mode 'text-mode
; gnus-read-active-file nil
;; gnus-use-adaptive-scoring '(line)
; gnus-check-new-newsgroups 'ask-server
delete-key-deletes-forward t
options-save-faces t
next-line-add-newlines nil
passwd-invert-frame-when-keyboard-grabbed nil
scroll-step 1
use-dialog-box nil
european-calendar-style t
hexl-iso "-iso"
);
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Ispell
;;
(setq ispell-dictionary-alist
(append ispell-dictionary-alist
(list
(list
"russian"
"[A-Za-zАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя]"
"[^A-Za-zАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя]"
"[\0]"
nil
nil
nil)))
ispell-dictionary "russian"
ispell-complete-word-dict "/usr/dict/russian.words")
;(setq ispell-program-name "/home/boris/bin/ispell")
(setq ps-paper-type 'a4small)
(setq lpr-command "enscript")
(setq lpr-switches '("-B"))
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [sisyphus] Emacs É ÕËÒÁÉÎÓËÉÅ ÂÕË×Ù
2003-04-05 6:54 [sisyphus] Emacs и украинские буквы Dmitry Malenko
2003-04-05 17:37 ` Maxim Tyurin
@ 2003-04-07 11:45 ` Serhii Hlodin
1 sibling, 0 replies; 3+ messages in thread
From: Serhii Hlodin @ 2003-04-07 11:45 UTC (permalink / raw)
To: sisyphus
>>>>> "DM" == Dmitry Malenko writes:
DM> Кто успешно юзает Emacs с украинским языком - отзовитесь :) Какой
DM> шрифт надо поставть?
В качестве шрифтов рекомендую использовать пакет intlfonts.
Необходимо доустановить пакет emacs-leim (если его нет) и пользоваться
MULE. При этом необходимо использовать внутренний переключатель
раскладок по 'C-\'. В GNU Emacs определены две таких раскладки:
cyrillic-ukrainian и cyrillic-ruskrainian.
--
With best regards,
Serhii Hlodin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-04-07 11:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-05 6:54 [sisyphus] Emacs и украинские буквы Dmitry Malenko
2003-04-05 17:37 ` Maxim Tyurin
2003-04-07 11:45 ` [sisyphus] Emacs É ÕËÒÁÉÎÓËÉÅ ÂÕË×Ù Serhii Hlodin
ALT Linux Sisyphus discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
public-inbox-index sisyphus
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.sisyphus
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git