org-src: Add option `plain' to org-src-window-setup

* lisp/org-src.el (org-src-window-setup): Add option `plain' for
org-src-window-setup, that uses vanilla display-buffer to show the
source window.
This commit is contained in:
Jack Kamm 2020-01-19 08:28:36 -08:00 committed by Kyle Meyer
parent ebf8b39ae6
commit 7d5e931f79
2 changed files with 13 additions and 0 deletions

View File

@ -35,6 +35,13 @@ value in call to =java=.
After editing a source block, Org will restore the window layout when
~org-src-window-setup~ is set to a value that modifies the layout.
*** New option to show source buffers using "plain" display-buffer
Added option ~plain~ to ~org-src-window-setup~ to show source buffers
using ~display-buffer~. This allows users to control how source
buffers are displayed by modifying ~display-buffer-alist~ or
~display-buffer-base-action~.
** New functions
*** ~org-columns-toggle-or-columns-quit~
=<C-c C-c>= bound to ~org-columns-toggle-or-columns-quit~ replaces the

View File

@ -148,6 +148,9 @@ the existing edit buffer."
"How the source code edit buffer should be displayed.
Possible values for this option are:
plain Show edit buffer using `display-buffer'. Users can
further control the display behavior by modifying
`display-buffer-alist' and its relatives.
current-window Show edit buffer in the current window, keeping all other
windows.
split-window-below Show edit buffer below the current window, keeping all
@ -801,6 +804,9 @@ Raise an error when current buffer is not a source editing buffer."
(defun org-src-switch-to-buffer (buffer context)
(pcase org-src-window-setup
(`plain
(when (eq context 'exit) (quit-restore-window))
(pop-to-buffer buffer))
(`current-window (pop-to-buffer-same-window buffer))
(`other-window
(switch-to-buffer-other-window buffer))