From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Haines Brown Newsgroups: gmane.emacs.help Subject: Re: How to jump with ediff Date: Sun, 28 Aug 2022 16:51:51 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10700"; mail-complaints-to="usenet@ciao.gmane.io" To: Stefan Monnier via Users list for the GNU Emacs text editor Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun Aug 28 22:53:07 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oSPHG-0002eI-Az for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 28 Aug 2022 22:53:06 +0200 Original-Received: from localhost ([::1]:47756 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oSPHF-0004wp-53 for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 28 Aug 2022 16:53:05 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:48632) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oSPGg-0004vB-G8 for help-gnu-emacs@gnu.org; Sun, 28 Aug 2022 16:52:30 -0400 Original-Received: from outbound-relay7.guardedhost.com ([2607:fe90:1:1::207]:44711) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oSPGe-0005Pn-Qv for help-gnu-emacs@gnu.org; Sun, 28 Aug 2022 16:52:30 -0400 Original-Received: from mail.guardedhost.com (tev-mail-relay3.omnis.com [216.239.133.140]) by outbound-relay5.guardedhost.com (Postfix) with ESMTP id 4MG5Nq12CJz7sK for ; Sun, 28 Aug 2022 20:52:27 +0000 (GMT) Original-Received: from lenin.histomat.net (unknown [32.210.108.191]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: brownh@historicalmaterialism.info) by mail.guardedhost.com (Postfix) with ESMTPSA id 4MG5Np6DZ4zyQ1 for ; Sun, 28 Aug 2022 20:52:26 +0000 (GMT) Original-Received: from haines by lenin.histomat.net with local (Exim 4.96) (envelope-from ) id 1oSPG3-0003vu-0O for help-gnu-emacs@gnu.org; Sun, 28 Aug 2022 16:51:51 -0400 Content-Disposition: inline In-Reply-To: X-Operating-System: GNU/Linux 5.18.0-4-amd64 Devuan beowulf Authentication-Results: mail.guardedhost.com;auth=pass X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse-Id: 53019B64-2713-11ED-B542-C5AF3171AE7E Received-SPF: pass client-ip=2607:fe90:1:1::207; envelope-from=haines@histomat.net; helo=outbound-relay7.guardedhost.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:139141 Archived-At: On Sun, Aug 28, 2022 at 08:37:43PM +0000, Gregory Heytings wrote: > > > > Stefan, thank you, but you loose me. What is a "control window"? I'm > > > running ediff in emacs. With the Mx-ediff command Emacs displays two > > > vertical windows. One displays one file and the other window > > > displays the other file. There is no "Ediff control window" that I > > > can see. > > > > Hmm... you're supposed to get a third window (normally shown in a small > > separate Emacs frame) showing a buffer called "*Ediff Control Panel*". > > The modeline doesn't show the buffer name, tho. And the frame is quite > > small, something line 2 lines by 20 columns or so (one line is the mode > > line which just shows how many diffs were found). > > > > IMO that separate Ediff Control Panel frame is an unfortunate default. > > Haines, add the following to your init file, and you'll see the Ediff > Control Panel at the bottom of the frame: > > (setq ediff-window-setup-function #'ediff-setup-windows-plain) Gregory, thanks. I will be trying it out. Haines