Re: [dev] [dwm] Emacs ediff popup window does not get focus

2018-10-09 Thread Sean MacLennan
So I instrumented dwm with some debugs and found that the terminal was indeed grabbing focus with an enter notify. So I found a workaround within GNU Emacs. Non GNU Emacs users can just look away now. (setf (alist-get 'top ediff-control-frame-parameters) 1) (setf (alist-get 'left ediff-control-fr

Re: [dev] [dwm] Emacs ediff popup window does not get focus

2018-10-09 Thread Sean MacLennan
On Mon, 8 Oct 2018 13:27:23 -0700 AR Garbe wrote: > Hi Sean, > > try forcing that window as floating window via: > > { "Ediff", NULL, NULL, 0,1, > -1 }, > > or > > { "Emacs", "Ediff", NULL, 0,1, > -1 }, > > in the rules[] section of co

Re: [dev] [dwm] Emacs ediff popup window does not get focus

2018-10-08 Thread AR Garbe
Hi Sean, try forcing that window as floating window via: { "Ediff", NULL, NULL, 0,1, -1 }, or { "Emacs", "Ediff", NULL, 0,1, -1 }, in the rules[] section of config.h BR, Anselm

[dev] [dwm] Emacs ediff popup window does not get focus

2018-10-08 Thread Sean MacLennan
At work I have switched from XEmacs to GNU Emacs for various reasons. I use ediff a LOT. With XEmacs, the ediff popup gets the focus but not so with GNU Emacs. The focus always stays in the bottom right window. So I end up with a lot on n characters in that windows (ediff users will understand). H