Skip to main content

Questions tagged [display-buffer]

0 votes
0 answers
40 views

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. ...
Filangieri's user avatar
1 vote
1 answer
96 views

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). ...
Filangieri's user avatar
1 vote
1 answer
46 views

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 ...
Mark's user avatar
  • 175
1 vote
1 answer
202 views

With the following code, emacs split sides windows like: ;; ------------------------------------- ;; | | * | ;; | | h | ;; | ...
RNA's user avatar
  • 50
1 vote
2 answers
610 views

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 ...
halloleo's user avatar
  • 1,445
-1 votes
2 answers
77 views

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 ...
Dilna's user avatar
  • 1,473
1 vote
0 answers
330 views

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 ...
martian's user avatar
  • 608
1 vote
2 answers
635 views

I have the following in the display-buffer-alist list: (("*" (display-buffer-in-side-window ((side . left) (window-width . 110))))) While display-buffer-overriding-...
Alex's user avatar
  • 155
2 votes
1 answer
726 views

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: ...
Colin Fraizer's user avatar
1 vote
1 answer
139 views

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 ...
jds's user avatar
  • 187
2 votes
5 answers
597 views

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 ...
Nicholas Hubbard's user avatar
4 votes
1 answer
450 views

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 ...
Florian's user avatar
  • 271
3 votes
1 answer
1k views

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 ...
illabout's user avatar
  • 285