Re: Popping help buffers
Stefan Monnier via Users list for the GNU Emacs text editor <[email protected]>
| Newsgroups | gmane.emacs.help |
|---|---|
| Message-ID | <[email protected]> |
> Is it recommended to pop the *Help* buffer to a frame with > > (display-buffer-overriding-action > '((display-buffer-pop-up-frame) > (pop-up-frames . t) > (name . "[RDU] Quick Reference Display Unit") > (minibuffer . nil))) No: `display-buffer-overriding-action` is for use only in exceptional circumstances because it overrides all other preferences expressed by the rest of the code and by the user. So it should be used only in commands which implement an explicit request by the user to override those other parameters (e.g. in commands like `other-window-prefix`). === Stefan