From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: key-translation-map and combinations Date: Thu, 29 May 2014 10:44:35 -0400 Message-ID: References: <5381198A.8060901@fastmail.fm> <538731D1.80505@fastmail.fm> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1401374731 12119 80.91.229.3 (29 May 2014 14:45:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 29 May 2014 14:45:31 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu May 29 16:45:24 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 1Wq1a6-0005sb-F8 for geh-help-gnu-emacs@m.gmane.org; Thu, 29 May 2014 16:45:22 +0200 Original-Received: from localhost ([::1]:48554 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wq1a6-0002ME-4R for geh-help-gnu-emacs@m.gmane.org; Thu, 29 May 2014 10:45:22 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47525) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wq1Zn-0001GS-2t for help-gnu-emacs@gnu.org; Thu, 29 May 2014 10:45:11 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wq1Zc-0008PT-Bj for help-gnu-emacs@gnu.org; Thu, 29 May 2014 10:45:03 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:37128) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wq1Zb-0008OR-Cn for help-gnu-emacs@gnu.org; Thu, 29 May 2014 10:44:52 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wq1ZY-0005Co-Pm for help-gnu-emacs@gnu.org; Thu, 29 May 2014 16:44:48 +0200 Original-Received: from 206-248-131-163.dsl.teksavvy.com ([206.248.131.163]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 May 2014 16:44:48 +0200 Original-Received: from monnier by 206-248-131-163.dsl.teksavvy.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 May 2014 16:44:48 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 14 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 206-248-131-163.dsl.teksavvy.com User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) Cancel-Lock: sha1:yL86rNZtQM+ExuGF+8VLIDSad9Q= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 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:97938 Archived-At: > name"). There, type Control-f and some search key that can be found > repeatedly in your directory. Then press Control-f repeatedly. > My observation is that repeated search by Control-f doesn't work like it > does when you use Control-s directly. However, if you use remap C-f using That's because the isearch-mode-map has a binding for C-s to do "repeat" but doesn't have such a binding for C-f. You can try (define-key isearch-mode-map [?\C-f] (lookup-key isearch-mode-map [?\C-s])) Stefan