ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] zsh: wrong encoding in term caption
@ 2005-08-05  8:37 Vitaly Ostanin
  2005-08-05  9:14 ` [sisyphus] " Vitaly Ostanin
  2005-08-12 17:00 ` [sisyphus] " Maxim Tyurin
  0 siblings, 2 replies; 9+ messages in thread
From: Vitaly Ostanin @ 2005-08-05  8:37 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

[-- Attachment #1: Type: text/plain, Size: 322 bytes --]

Здравствуйте.

Вставил в .zshrc

case $TERM in
 xterm* | rxvt | aterm)
   precmd(){print -Pn "\e]0;%~\a"}
    ;;
esac

Всё прекрасно, кроме русских букв в путях - выводятся
кракозябрами. Это лечится?

zsh-4.2.5-alt2
локаль ru_RU.CP1251

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-05  8:37 [sisyphus] zsh: wrong encoding in term caption Vitaly Ostanin
@ 2005-08-05  9:14 ` Vitaly Ostanin
  2005-08-05 10:44   ` Alexey Morsov
  2005-08-15  5:21   ` php-coder
  2005-08-12 17:00 ` [sisyphus] " Maxim Tyurin
  1 sibling, 2 replies; 9+ messages in thread
From: Vitaly Ostanin @ 2005-08-05  9:14 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

[-- Attachment #1: Type: text/plain, Size: 434 bytes --]

Vitaly Ostanin пишет:
> Здравствуйте.
> 
> Вставил в .zshrc
> 
> case $TERM in
>  xterm* | rxvt | aterm)
>    precmd(){print -Pn "\e]0;%~\a"}
>     ;;
> esac
> 
> Всё прекрасно, кроме русских букв в путях - выводятся
> кракозябрами. Это лечится?

Видимо, это проблема aterm, в xterm всё нормально.

aterm-0.4.2-alt9
xterm-196-alt1

<skipped/>

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-05  9:14 ` [sisyphus] " Vitaly Ostanin
@ 2005-08-05 10:44   ` Alexey Morsov
  2005-08-05 12:01     ` Vitaly Ostanin
  2005-08-15  5:21   ` php-coder
  1 sibling, 1 reply; 9+ messages in thread
From: Alexey Morsov @ 2005-08-05 10:44 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Vitaly Ostanin wrote:
> aterm-0.4.2-alt9
> xterm-196-alt1
У меня в gnome-terminal такое бывает если mc зайти в каталог с русским 
именем скажем и вытий из mc :)

-- 
С уважением,
Алексей Морсов
системный администратор ЗАО "ИК "Риком-Траст"
ICQ: 196-766-290
Jabber: samurai@www.fondmarket.ru
www.ricom.ru
www.fondmarket.ru


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-05 10:44   ` Alexey Morsov
@ 2005-08-05 12:01     ` Vitaly Ostanin
  0 siblings, 0 replies; 9+ messages in thread
From: Vitaly Ostanin @ 2005-08-05 12:01 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

[-- Attachment #1: Type: text/plain, Size: 299 bytes --]

Alexey Morsov пишет:
> Vitaly Ostanin wrote:
> 
>>aterm-0.4.2-alt9
>>xterm-196-alt1
> 
> У меня в gnome-terminal такое бывает если mc зайти в каталог с русским 
> именем скажем и вытий из mc :)

А у меня вот без mc :)

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] zsh: wrong encoding in term caption
  2005-08-05  8:37 [sisyphus] zsh: wrong encoding in term caption Vitaly Ostanin
  2005-08-05  9:14 ` [sisyphus] " Vitaly Ostanin
@ 2005-08-12 17:00 ` Maxim Tyurin
  1 sibling, 0 replies; 9+ messages in thread
From: Maxim Tyurin @ 2005-08-12 17:00 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Vitaly Ostanin writes:

> Здравствуйте.
>
> Вставил в .zshrc
>
> case $TERM in
>  xterm* | rxvt | aterm)
>    precmd(){print -Pn "\e]0;%~\a"}
>     ;;
> esac

Это из моего .zshrc:
# Если работаем под X меняем заголовки терминала
case $TERM in
    xterm*|rxvt*|aterm*)
                        precmd () {
                            print -Pn "\e]0;TERM %n@%m: %~\t$1\a"
                        }
                        preexec () {
                            print -Pn "\e]0;TERM <%n@%m> $1\a"
                        }
                        ;;
esac

В локали koi8 у меня все работает

>
> Всё прекрасно, кроме русских букв в путях - выводятся
> кракозябрами. Это лечится?
>
> zsh-4.2.5-alt2
> локаль ru_RU.CP1251

-- 

With Best Regards, Maxim Tyurin aka Bungarus
JID:	MrKooll@jabber.pibhe.com



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-05  9:14 ` [sisyphus] " Vitaly Ostanin
  2005-08-05 10:44   ` Alexey Morsov
@ 2005-08-15  5:21   ` php-coder
  2005-08-15 11:09     ` Vitaly Ostanin
  1 sibling, 1 reply; 9+ messages in thread
From: php-coder @ 2005-08-15  5:21 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list


--- Vitaly Ostanin 2005-08-05 13:14:33 +0400
+++ php-coder 2005-08-12 22:18:41 +0700

[skip]
VO> > Всё прекрасно, кроме русских букв в путях - выводятся
VO> > кракозябрами. Это лечится?

    Видимо, да, потому что у меня не воспроизводится :)
    

    Уже неделя прошла, у вас проблема все еще осталась?

VO> Видимо, это проблема aterm, в xterm всё нормально.

    Нет. У меня и в aterm все окей.

VO> aterm-0.4.2-alt9
VO> xterm-196-alt1

    [c0der@mycomp ~]$ rpm -q zsh aterm xterm
    zsh-4.3.0-alt0.2
    aterm-1.0.0-alt1
    xterm-202-alt2

-- 
+ php-coder
+ php-coder[at]altlinux[dot]ru





^ permalink raw reply	[flat|nested] 9+ messages in thread

* [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-15  5:21   ` php-coder
@ 2005-08-15 11:09     ` Vitaly Ostanin
  2005-08-16  9:54       ` php-coder
  0 siblings, 1 reply; 9+ messages in thread
From: Vitaly Ostanin @ 2005-08-15 11:09 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

[-- Attachment #1: Type: text/plain, Size: 792 bytes --]

php-coder пишет:
> --- Vitaly Ostanin 2005-08-05 13:14:33 +0400
> +++ php-coder 2005-08-12 22:18:41 +0700
> 
> [skip]
> VO> > Всё прекрасно, кроме русских букв в путях - выводятся
> VO> > кракозябрами. Это лечится?
> 
>     Видимо, да, потому что у меня не воспроизводится :)
> 
>     Уже неделя прошла, у вас проблема все еще осталась?

Да.

> VO> Видимо, это проблема aterm, в xterm всё нормально.
> 
>     Нет. У меня и в aterm все окей.

Какая у вас системная кодировка?

> 
> VO> aterm-0.4.2-alt9
> VO> xterm-196-alt1
> 
>     [c0der@mycomp ~]$ rpm -q zsh aterm xterm
>     zsh-4.3.0-alt0.2
>     aterm-1.0.0-alt1
>     xterm-202-alt2

Сейчас у меня такие же версии, проблема осталась.

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-15 11:09     ` Vitaly Ostanin
@ 2005-08-16  9:54       ` php-coder
  2005-08-18 12:02         ` Vitaly Ostanin
  0 siblings, 1 reply; 9+ messages in thread
From: php-coder @ 2005-08-16  9:54 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Hello Vitaly,

Monday, August 15, 2005, 6:09:48 PM, you wrote:

>>     Уже неделя прошла, у вас проблема все еще осталась?
VO> Да.

    :-(

VO> Какая у вас системная кодировка?

    Как и у вас: ru_RU.CP1251

-- 
+ php-coder
+ php-coder[at]altlinux[dot]ru






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [sisyphus] Re: zsh: wrong encoding in term caption
  2005-08-16  9:54       ` php-coder
@ 2005-08-18 12:02         ` Vitaly Ostanin
  0 siblings, 0 replies; 9+ messages in thread
From: Vitaly Ostanin @ 2005-08-18 12:02 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

php-coder пишет:
> Hello Vitaly,
> 
> Monday, August 15, 2005, 6:09:48 PM, you wrote:
> 
> 
>>>    Уже неделя прошла, у вас проблема все еще осталась?
> 
> VO> Да.
> 
>     :-(
> 
> VO> Какая у вас системная кодировка?
> 
>     Как и у вас: ru_RU.CP1251

Ладно, спишем на ошмётки spring 2001 beta :)

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2005-08-18 12:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-08-05  8:37 [sisyphus] zsh: wrong encoding in term caption Vitaly Ostanin
2005-08-05  9:14 ` [sisyphus] " Vitaly Ostanin
2005-08-05 10:44   ` Alexey Morsov
2005-08-05 12:01     ` Vitaly Ostanin
2005-08-15  5:21   ` php-coder
2005-08-15 11:09     ` Vitaly Ostanin
2005-08-16  9:54       ` php-coder
2005-08-18 12:02         ` Vitaly Ostanin
2005-08-12 17:00 ` [sisyphus] " Maxim Tyurin

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