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: When do you prefer frames instead of windows? Date: Tue, 25 Nov 2014 16:57:48 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1416933570 20718 80.91.229.3 (25 Nov 2014 16:39:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 16:39:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 25 17:39: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 1XtJ99-0002D3-KK for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 17:39:23 +0100 Original-Received: from localhost ([::1]:58302 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtJ99-0000ff-6l for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 11:39:23 -0500 Original-Path: usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 25 Original-X-Trace: individual.net 0ObyiZ3JWdAlu8yKETHkaQD9VA0t/MQQTuhkMctQovVU2W4ok= Cancel-Lock: sha1:nODjgnwk2AZTgme13lLeltO/4U4= sha1:u/M8xHPIOEvOZ47RNLN+Q1JFH50= User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Original-Xref: usenet.stanford.edu gnu.emacs.help:208894 X-Mailman-Approved-At: Tue, 25 Nov 2014 11:39:06 -0500 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:101177 Archived-At: * Drew Adams | > Single frame for Ediff: A on top, B in the middle, Control at | > bottom. The separate control frame is a nuisance with | > focus-follows-mouse, it almost always is out of focus, loses | > the cursor, or misbehaves in other fashions... > | Seems like that is something that could be fixed. Have you | thought about filing a bug report / enhancement request? | (`M-x report-emacs-bug') It's not a bug... :-) I don't think there is anything that emacs can do about it. If I want focus-follows-mouse (and I want it :-), then moving the mouse out of the ediff control frame really should move the mouse out of it, and not try to be helpful and force the mouse inside the control frame or such nonsense. I now have bound a key to get my ediff control panel back: runs the command (lambda nil (interactive) (let ((buf (get-buffer "*Ediff Control Panel*"))) (if buf (pop-to-buffer buf)))), which is an interactive Lisp function. and then C-l recenters everything (could even pack that in the keybinding, but...) My EUR 0.02 R'