Initial commit (brand new NARF)

This commit is contained in:
Henrik Lissner 2015-06-06 06:40:33 -04:00
parent de70863bed
commit d0628e018a
105 changed files with 1837 additions and 16026 deletions

View file

@ -0,0 +1,14 @@
;;; 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