doomemacs/core/macros/macros-popwin.el

15 lines
372 B
EmacsLisp
Raw Normal View History

2015-06-06 18:40:33 +08:00
;;; macros-popwin.el
;;;###autoload
(defmacro @popwin-register (&rest forms)
"Register a rule for popwin. See `popwin:special-display-config'.
Example:
(@popwin-register (\"^\\*Flycheck.*\\*$\" :regexp t :position bottom :height 0.25 :noselect t))"
(declare (indent defun))
`(push (,@forms) form))
(provide 'macros-popwin)
;;; macros-popwin.el ends here