GNU bug report logs -
#10477
zap-to-char should allow picking from history
Previous Next
Reported by: jidanni <at> jidanni.org
Date: Wed, 11 Jan 2012 03:29:01 UTC
Severity: wishlist
Tags: fixed
Fixed in version 27.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Juri Linkov <juri <at> linkov.net> writes:
>>> Using read-from-minibuffer would allow this for free.
>>
>> How would you implement read-char-with-history using
>> read-from-minibuffer? Rebind self-insert-command?
>
> Exactly, by rebinding self-insert-command:
>
> (defvar read-char-from-minibuffer-map
> (let ((map (make-sparse-keymap)))
> (set-keymap-parent map minibuffer-local-map)
> (define-key map [remap self-insert-command]
> (lambda ()
> (interactive)
> (delete-minibuffer-contents)
> (insert (event-basic-type last-command-event))
> (exit-minibuffer)))
> map))
>
> (defun read-char-from-minibuffer (prompt)
> (read-from-minibuffer prompt nil
> read-char-from-minibuffer-map nil
> 'read-char-from-minibuffer-history))
>
> (read-char-from-minibuffer "Please type a character: ")
Hm, interesting.
That indeed seems a lot better than the current read-char-with-history.
(Minor tweak -- this returns a string, but should return a char.)
And this presumably works with "complicated" input methods, too? Xim
etc.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
This bug report was last modified 5 years and 210 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.