2017-06-10 01:52:44 +02:00
|
|
|
;;; lang/org/autoload/babel.el -*- lexical-binding: t; -*-
|
2017-05-19 03:29:00 +02:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun +org/edit-special-same-window ()
|
|
|
|
(interactive)
|
|
|
|
(let ((shackle-rules '(("^\\*Org Src" :align t :select t :regexp t :noesc t :same t))))
|
|
|
|
(call-interactively #'org-edit-special)
|
|
|
|
;; FIXME too tightly coupled with doom-buffer-mode
|
2017-06-10 01:53:03 +02:00
|
|
|
(when (fboundp 'solaire-mode)
|
|
|
|
(solaire-mode +1))))
|