unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* minibuffer, input methods
@ 2006-10-29 20:55 Martin Steffen
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Steffen @ 2006-10-29 20:55 UTC (permalink / raw)




Hi,

I got  the folling question/problem. It has to do
with the following:

I want to type in characters not supported by my keyboard (to be concrete,
German umlauts) but not only that:

    I want that this is done also in the mini-buffer.



As far as I have read through the ``theory'' of all it, I
have come so far that 

  1) I have installed leim in addition to the
    plain emacs distrition


  2) I can activate some specific input-method, for
    instance

       M-x set-input-method ->> german-prefix

  3) Since point 2) does not lead to the fact that
     that method is _inherited_ into the mini-buffer
     (and since  enable-recursive-minibuffers  is 
     kind of weird and unpractical), I can set

     (setq minibuffer-allow-text-properties t)

    so that for instance when I do a ``text search''
    I can use this input method also when being
    prompted for the search string.


--

So far so good, now the problem starts :-) I have written
some home-brew emacs-lisps functions, which prompt
the user for some string, using for instance

    (read-string "word: " word));  

Now, in the minibuffer, which is opened by read-string, 


     the input method is not inherited


Now, how can I have that?


I'm grateful for any hints, not only for in relation with the
last question (what's wrong with read-string?) but maybe
I'm in the complete wrong direction anyway?



For instance, I remember in the good old days, there had been
the possiblity to type in  umlauts with

    C-x 8 " u

or analogously. 

I can still type this, but it has not the wanted effect.  I see that the
"key" C-x 8 is bound to "iso-transl-ctl-x-8-map" but it doesn't do what I
expect. 

Or maybe german-prefix is a wrong choice?


Or maybe a trick could be, to set the input-method globally
for all of emacs, maybe then it gets inherited by all
minibuffers, also for read-string.

Anyway, cheers, Martin

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

* Re: minibuffer, input methods
       [not found] <mailman.403.1162151752.27805.help-gnu-emacs@gnu.org>
@ 2006-10-29 21:42 ` B. T. Raven
  2006-10-30 19:57   ` Martin Steffen
  0 siblings, 1 reply; 3+ messages in thread
From: B. T. Raven @ 2006-10-29 21:42 UTC (permalink / raw)



"Martin Steffen" <msteffen@ifi.uio.no> wrote in message
news:mailman.403.1162151752.27805.help-gnu-emacs@gnu.org...
>
>
> Hi,
>
> I got  the folling question/problem. It has to do
> with the following:
>
> I want to type in characters not supported by my keyboard (to be
concrete,
> German umlauts) but not only that:
>
>     I want that this is done also in the mini-buffer.
>
>
>
> As far as I have read through the ``theory'' of all it, I
> have come so far that
>
>   1) I have installed leim in addition to the
>     plain emacs distrition
>
>
>   2) I can activate some specific input-method, for
>     instance
>
>        M-x set-input-method ->> german-prefix
>
>   3) Since point 2) does not lead to the fact that
>      that method is _inherited_ into the mini-buffer
>      (and since  enable-recursive-minibuffers  is
>      kind of weird and unpractical), I can set
>
>      (setq minibuffer-allow-text-properties t)
>
>     so that for instance when I do a ``text search''
>     I can use this input method also when being
>     prompted for the search string.

Is the integer that represents a character really a property? I don't
think that diacriticals are properties even when using non pre-composed
glyphs. I have this variable left at nil and the minibuffer inherits the
input method wherever I think it should.


>
>
> --
>
> So far so good, now the problem starts :-) I have written
> some home-brew emacs-lisps functions, which prompt
> the user for some string, using for instance
>
>     (read-string "word: " word));
>
> Now, in the minibuffer, which is opened by read-string,
>
>
>      the input method is not inherited
>
>
> Now, how can I have that?
>
>
> I'm grateful for any hints, not only for in relation with the
> last question (what's wrong with read-string?) but maybe
> I'm in the complete wrong direction anyway?
>
>
>
> For instance, I remember in the good old days, there had been
> the possiblity to type in  umlauts with
>
>     C-x 8 " u
>
> or analogously.
>
> I can still type this, but it has not the wanted effect.  I see that the
> "key" C-x 8 is bound to "iso-transl-ctl-x-8-map" but it doesn't do what
I
> expect.
>
> Or maybe german-prefix is a wrong choice?
>
>
> Or maybe a trick could be, to set the input-method globally
> for all of emacs, maybe then it gets inherited by all
> minibuffers, also for read-string.
>
> Anyway, cheers, Martin

(read-string "string: " nil nil nil t)

works for me on 21.3 w32 build. I didn't use german-prefix
(latin-1-postfix instead) but it should work for any of them. Have a look
at the read-string function via C-h f. The fourth optional argument is
INHERIT-INPUT-METHOD.

Ed

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

* Re: minibuffer, input methods
  2006-10-29 21:42 ` minibuffer, input methods B. T. Raven
@ 2006-10-30 19:57   ` Martin Steffen
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Steffen @ 2006-10-30 19:57 UTC (permalink / raw)


>>>>> "B" == B T Raven <ecinmn@alcisp.com> writes:

    B> "Martin Steffen" <msteffen@ifi.uio.no> wrote in message
    B> news:mailman.403.1162151752.27805.help-gnu-emacs@gnu.org...
    >> 
    >> 
    >> input method also when being prompted for the search string.

    B> Is the integer that represents a character really a property? I
    B> don't think that diacriticals are properties even when using non
    B> pre-composed glyphs. I have this variable left at nil and the
    B> minibuffer inherits the input method wherever I think it should.

I don't exactly know whether it's a property, I only
observed that setting the variable seemed to bring
me nearer to the solution.

    B> (read-string "string: " nil nil nil t)

    B> works for me on 21.3 w32 build. I didn't use german-prefix
    B> (latin-1-postfix instead) but it should work for any of them. Have a
    B> look at the read-string function via C-h f. The fourth optional
    B> argument is INHERIT-INPUT-METHOD.

Yep, that did it, great. Thank you.  I know that somewhere emacs was
prepared to be adapted to what I wanted (I have a new keyboard etc
now).

Still, emacs rules :-)



hilsen, Martin

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

end of thread, other threads:[~2006-10-30 19:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.403.1162151752.27805.help-gnu-emacs@gnu.org>
2006-10-29 21:42 ` minibuffer, input methods B. T. Raven
2006-10-30 19:57   ` Martin Steffen
2006-10-29 20:55 Martin Steffen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).