Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: problems with 4.3.4 and Tru64
- X-seq: zsh-workers 23425
- From: Phil Pennock <zsh-workers+phil.pennock@xxxxxxxxxxxx>
- To: Timo Aaltonen <tjaalton@xxxxxxxxx>
- Subject: Re: problems with 4.3.4 and Tru64
- Date: Thu, 10 May 2007 10:55:41 -0700
- Cc: zsh-workers@xxxxxxxxxx
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=first1; d=spodhuis.org; h=Received:Date:From:To:Cc:Subject:Message-ID:Mail-Followup-To:References:MIME-Version:Content-Type:Content-Disposition:Content-Transfer-Encoding:In-Reply-To; b=akE9MJXp2fsjL+32PIXmDUGKxyKyWBcDZooMxys0ZeoCQNeduqWQVx0l+qYgOXIt4oee9B+m/08wkdbCaendXdInFmhTknxMOkMunTkeWRM0XtmqqdGl+sXeuazw1L7eR4PWTppXr4ED/oHj67n51x7kuWACyfI+Q3VKLrD/bOU=;
- In-reply-to: <Pine.OSF.4.64.0705101117330.479844@xxxxxxxxxxxxxxxx>
- Mail-followup-to: Timo Aaltonen <tjaalton@xxxxxxxxx>, zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <Pine.OSF.4.64.0705101117330.479844@xxxxxxxxxxxxxxxx>
On 2007-05-10 at 11:25 +0300, Timo Aaltonen wrote:
> I've compiled 4.3.4 on Tru64 5.1B and I can't type some characters with it
> (åäö being most useful for Finns), it only makes a beep. With 4.2.x/4.3.2
> it works, but since they are otherwise not that useful for UTF8 I had high
> hopes for the new release..
>
> Any ideas why that might be?
As a double-check to separate out input from shell handling, it'd be
good to see if you can compose and see the characters using
insert-compose-char.
autoload insert-composed-char
zle -N insert-composed-char
bindkey '^Xk' insert-composed-char
(assuming here that you're using bash input bindings and are happy with
<Ctrl-x><k> as being close to vim's insert-mode <Ctrl-k>)
This turns on digraph composition, similar to vim's digraphs or X11
Compose key. To input the characters, type <Ctrl-x><k> followed by two
characters; you get å ä ö from the pairs: a0 a: o:
If these display fine, then multibyte is working and parts of zle are
working; the problem will be in input processing. If these don't
display, then the problem's not in the input processing.
Thanks,
-Phil
Messages sorted by:
Reverse Date,
Date,
Thread,
Author