From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ralf Fassel Newsgroups: gmane.emacs.help Subject: Re: The euro symbol in emacs Date: Fri, 05 Dec 2014 10:10:10 +0100 Message-ID: References: <98c72276-50f8-45ea-9fd9-636306b3854e@default> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1417770933 13509 80.91.229.3 (5 Dec 2014 09:15:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 5 Dec 2014 09:15:33 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Dec 05 10:15:26 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Xwoyu-00008z-Ir for geh-help-gnu-emacs@m.gmane.org; Fri, 05 Dec 2014 10:15:20 +0100 Original-Received: from localhost ([::1]:49357 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xwoyt-0006oS-QU for geh-help-gnu-emacs@m.gmane.org; Fri, 05 Dec 2014 04:15:19 -0500 Original-Path: usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 24 Original-X-Trace: individual.net 78KNSC6TqhVcBfk8t84txwgAsrBvyVtmpY0SFERKFwUR4R4dc= Cancel-Lock: sha1:9DiD+lCAFityJ4qVyv/pS3oMIc4= sha1:GkPZWz304TySnFmY3hdNAlX+cvo= User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Original-Xref: usenet.stanford.edu gnu.emacs.help:209138 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:101416 Archived-At: * Guido Van Hoecke | > The prompt area is read-only, normally. My crystal ball tells me that | > you really mean "in the minibuffer", i.e., during input. | > | > For that, try adding that binding to one or all of the minibuffer | > keymaps. It is probably enough to add it to only `minibuffer-local-map': | > | > (define-key minibuffer-local-map (kbd "s-2") | > (lambda () (interactive) (insert ?¤))) | > > | This sounds like the way to go, but it doen't seem to work. Tried the | minibuffer-local-map as well as all other minibuffer-*-map maps that | are listed when completing F1 v minibuffer- You also mentioned searching, so have a look at 'isearch-mode-map'. isearch-forward is an interactive compiled Lisp function in `isearch.el'. ---- As you type characters, they add to the search string and are found. The following non-printing keys are bound in `isearch-mode-map'. HTH R'