Re: [O] Some org-mode key interface popup buffers can't by managed by display-buffer-alist

2018-04-26 Thread Bastien
Hi,

stardiviner  writes:

> I use following config, but does not work. How can I manage those
> popup buffers with display-buffer-alist?
>
>
> (add-to-list 'display-buffer-alist
>  '("^\\*Org Agenda\\*" (display-buffer-same-window)))
>
> (add-to-list 'display-buffer-alist
>  '("^\\*Clock Task Select\\*"
> (display-buffer-below-selected)))

Org uses `org-no-popups' in `org-switch-to-buffer-other-window' which
nils display-buffer-alist to prevent tweaking this manually.

Most of the time, org-switch-to-buffer-other-window is preferred over
switch-to-buffer-other-window, but if you find an occurrence that does
not seem justified, please report so.

Thanks,

-- 
 Bastien



[O] Some org-mode key interface popup buffers can't by managed by display-buffer-alist

2017-12-22 Thread stardiviner
I use following config, but does not work. How can I manage those popup 
buffers with display-buffer-alist?



   (add-to-list 'display-buffer-alist
 '("^\\*Org Agenda\\*" (display-buffer-same-window)))

   (add-to-list 'display-buffer-alist
 '("^\\*Clock Task Select\\*"
   (display-buffer-below-selected)))