Questions tagged [display-buffer]
The display-buffer tag has no summary.
13 questions
0
votes
0
answers
40
views
Buffer opens in current frame instead of child frame
This is supposed to display a buffer in a child frame, but instead of creating a new child frame, the buffer opens in a window inside the current frame.
Would like the buffer to take the whole frame. ...
1
vote
1
answer
96
views
Switch and non-switch actions for display-buffer
In the following command I try to do four things.
D1: Display in some window
The buffer is shown in a window somewhere. The window displaying the buffer is not selected (no input focus is given).
...
1
vote
1
answer
46
views
Run ansi-term in a new frame
I have the following in my .emacs :
(add-to-list 'display-buffer-alist '("\\`\\*e?shell" display-buffer-pop-up-frame))
And it opens shell or eshell buffer in the new frame when I run M-x ...
1
vote
1
answer
204
views
emacs display layout for windows of bottom and right sides
With the following code, emacs split sides windows like:
;; -------------------------------------
;; | | * |
;; | | h |
;; | ...
1
vote
2
answers
612
views
How to reuse a window in another frame for display-buffer
I like to have the Help buffer in a some frame (with some other windows) and I try to reuse this window in this frame even when I am in another frame and issue a help command.
I tried setting
(setq ...
-1
votes
2
answers
77
views
Display buffer without transferring to the buffer [closed]
I am using (display-buffer buffer) and (pop-to-buffer buffer). The latter puts the cursor in the buffer. Although I want to show the buffer, I want to stay in the buffer I am working on rather than ...
1
vote
0
answers
331
views
display buffer: split below only once, then reuse
I am trying to tame display-buffer to achieve the following behavior: if I have a frame split once horizontally and then run a function that creates a third window (like help, magit, or similar) I ...
1
vote
2
answers
636
views
Why does this `display-buffer-alist` rule not do what I expect?
I have the following in the display-buffer-alist list:
(("*"
(display-buffer-in-side-window
((side . left)
(window-width . 110)))))
While display-buffer-overriding-...
2
votes
1
answer
728
views
Change and later restore the window configuration of a frame
Imagine I have a frame containing some number of windows—sometimes only one, sometimes split in various ways.
Now imagine that one of the displayed windows contains an org-mode buffer. What I want is:
...
1
vote
1
answer
139
views
Display attachment to mu4e message (a PDF) in the same window rather than new frame
I am using mu4e and pdf-tools. Whenever I go to open an attached pdf (e.g., with gnus-article-press-button) the attachment pops open in a new frame. How can I control where it pops up? Looking at that ...
2
votes
5
answers
597
views
Dired: How to open file with ace-window while keeping focus on dired buffer?
I have this Elisp code that allows me to use ace-window to open a file in a selected window from Dired:
(defun find-file-dired-ace-window ()
"Use ace window to select a window for opening a ...
4
votes
1
answer
451
views
Using a predicate function in display-buffer-alist
I want to add a rule to display-buffer-alist, that splits the frame to the right when opening a .pdf file if and only if there is a corresponding .tex file in the same folder.
According to the ...
3
votes
1
answer
1k
views
make `display-buffer` open buffer in new tab
The display-buffer function seems to be used quite heavily within Emacs. It has a lot of options to determine where to open a new buffer (a new window, a new frame, an existing window, etc).
Emacs ...