all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jpkotta <jpkotta@gmail.com>
To: gnu.emacs.help@googlegroups.com
Cc: help-gnu-emacs@gnu.org
Subject: Re: ediff frame appear in another page of Fvwm. How to debug/fix?
Date: Wed, 26 Sep 2012 08:07:55 -0700 (PDT)	[thread overview]
Message-ID: <a8a23513-d72e-453e-89c7-8085897afd8f@googlegroups.com> (raw)
In-Reply-To: <mailman.9758.1348651384.855.help-gnu-emacs@gnu.org>

On Wednesday, September 26, 2012 4:23:04 AM UTC-5, Oleksandr Gavenko wrote:
> M-x ediff RET RET create ediff frame. It shown at right upper corner.
> 
> 
> 
> But recently it shown in another page of Fvwm, so I don't see main Emacs frame.
> 
> 
> 
> I try set:
> 
> 
> 
> (defun my-ediff-control-frame-position 
> 
> (ctl-buffer ctl-frame-width ctl-frame-height)
> 
>   (list '(name . "TEST Ediff") '(top . -10) '(left . -30)))
> 
> 
> 
> - now it appear on another page but lower right corner.
> 
> 
> 
> I try disable my Fvwm hack:
> 
> 
> 
> DestroyFunc MyFuncFocusWindow
> 
> AddToFunc MyFuncFocusWindow
> 
> + I FlipFocus
> 
> + I WarpToWindow 50 50
> 
> DestroyModuleConfig FvwmEvent-NewWindow
> 
> *FvwmEvent-NewWindow: Cmd
> 
> *FvwmEvent-NewWindow: Delay 1
> 
> *FvwmEvent-NewWindow: StartDelay 10
> 
> *FvwmEvent-NewWindow: add_window MyFuncFocusWindow
> 
> 
> 
> AddToFunc StartFunction I Module FvwmEvent
> 
> AddToFunc StartFunction I FvwmEvent FvwmEvent-NewWindow
> 
> 
> 
> and now ediff work good.
> 
> 
> 
> This Fvwm code emulate Windows focus behavior that I like.
> 
> 
> 
> Any suggestion to fix issue?

On Wednesday, September 26, 2012 4:23:04 AM UTC-5, Oleksandr Gavenko wrote:
> M-x ediff RET RET create ediff frame. It shown at right upper corner.
> 
> 
> 
> But recently it shown in another page of Fvwm, so I don't see main Emacs frame.
> 
> 
> 
> I try set:
> 
> 
> 
> (defun my-ediff-control-frame-position 
> 
> (ctl-buffer ctl-frame-width ctl-frame-height)
> 
>   (list '(name . "TEST Ediff") '(top . -10) '(left . -30)))
> 
> 
> 
> - now it appear on another page but lower right corner.
> 
> 
> 
> I try disable my Fvwm hack:
> 
> 
> 
> DestroyFunc MyFuncFocusWindow
> 
> AddToFunc MyFuncFocusWindow
> 
> + I FlipFocus
> 
> + I WarpToWindow 50 50
> 
> DestroyModuleConfig FvwmEvent-NewWindow
> 
> *FvwmEvent-NewWindow: Cmd
> 
> *FvwmEvent-NewWindow: Delay 1
> 
> *FvwmEvent-NewWindow: StartDelay 10
> 
> *FvwmEvent-NewWindow: add_window MyFuncFocusWindow
> 
> 
> 
> AddToFunc StartFunction I Module FvwmEvent
> 
> AddToFunc StartFunction I FvwmEvent FvwmEvent-NewWindow
> 
> 
> 
> and now ediff work good.
> 
> 
> 
> This Fvwm code emulate Windows focus behavior that I like.
> 
> 
> 
> Any suggestion to fix issue?

Are you talking about the ediff control window?  Personally, I prefer it to be in the same frame as the buffers being compared: (setq ediff-window-setup-function 'ediff-setup-windows-plain).

But even when I use emacs -q and run ediff, the control frame never goes off the page, so it must be related to your Fvwm config.  I doubt it has anything to do with changing focus; it's probably due to whatever placement styles you have enabled.  Here is the part of my Fvwm config which is probably relevant:

,----
| Style * SnapAttraction 10 All Screen
| 
| Style * ResizeOpaque
| 
| Style * UsePPosition
| 
| Style * MinOverlapPlacement
| 
| # start on screen with pointer
| Style * StartsOnScreen c
| 
| # do not jump to a desk that a window suddenly pops up on
| Style * SkipMapping
`----
,----
| # widows are focused by clicking on them
| # the focusing click is passed to the window
| # clicking in the window does not raise, but clicking on the decorations does
| Style * ClickToFocus, FPClickDecorToFocus
| Style * !FPClickRaisesFocused, !FPClickRaisesUnfocused, \
|     FPClickDecorRaisesFocused, FPClickDecorRaisesUnfocused
| 
| # programs can focus themselves
| Style * FPFocusByProgram
| 
| # new windows/transients grab the focus when created
| # closing a window/transient releases focus to the previously focused window
| Style * FPGrabFocus, FPGrabFocusTransient, FPReleaseFocus, FPReleaseFocusTransient
`----

I don't have any emacs-specific fvwm styles.  You should probably ask the Fvwm list.



       reply	other threads:[~2012-09-26 15:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.9758.1348651384.855.help-gnu-emacs@gnu.org>
2012-09-26 15:07 ` jpkotta [this message]
2012-09-26 21:39   ` ediff frame appear in another page of Fvwm. How to debug/fix? Oleksandr Gavenko
2012-09-26  9:22 Oleksandr Gavenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a8a23513-d72e-453e-89c7-8085897afd8f@googlegroups.com \
    --to=jpkotta@gmail.com \
    --cc=gnu.emacs.help@googlegroups.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.