From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bruce Ingalls Newsgroups: gmane.emacs.help Subject: replace C-s with C-f Date: Mon, 17 Feb 2003 18:31:39 GMT Organization: Road Runner - NYC Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1045507177 31042 80.91.224.249 (17 Feb 2003 18:39:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 17 Feb 2003 18:39:37 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18kqAy-00084Y-00 for ; Mon, 17 Feb 2003 19:39:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18kqBu-0001FA-05 for gnu-help-gnu-emacs@m.gmane.org; Mon, 17 Feb 2003 13:40:34 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.uchicago.edu!newsfeed.cs.wisc.edu!newshub.sdsu.edu!newspeer.cts.com!news-west.rr.com!cyclone.nyroc.rr.com!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!not-for-mail User-Agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.2) Gecko/20021127 X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help Original-Lines: 13 Original-NNTP-Posting-Host: 24.168.135.82 Original-X-Complaints-To: abuse@rr.com Original-X-Trace: twister.nyc.rr.com 1045506699 24.168.135.82 (Mon, 17 Feb 2003 13:31:39 EST) Original-NNTP-Posting-Date: Mon, 17 Feb 2003 13:31:39 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:110295 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:6798 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:6798 I bound C-f to isearch-forward, as follows: (global-set-key [(control s)] 'save-buffer) (global-set-key [(control f)] 'isearch-forward) The bindings work, but when I want to continue a search, by hitting C-f again, it instead stops & restarts the search. C-g is generally bound to continuing a search, but I'd rather not go that route. What is the best way to handle this?