Define doom popup matchers in core-popups rather than core-scratch

This commit is contained in:
Henrik Lissner 2016-06-06 23:49:34 -04:00
parent bdf9616f80
commit 68430d944b
2 changed files with 3 additions and 3 deletions

View File

@ -15,6 +15,9 @@
("*esup*" :align below :size 0.4 :noselect t)
("*minor-modes*" :align below :size 0.5 :noselect t)
("*eval*" :align below :size 16 :noselect t)
;; Doom
("*doom*" :align below :size 35 :select t)
("^\\*doom.+\\*$" :align below :size 12 :noselect t :regexp t)
;; Emacs
("*Pp Eval Output*" :align below :size 0.3)
("*Apropos*" :align below :size 0.3)

View File

@ -13,9 +13,6 @@
(defvar-local doom-buffer-edited nil
"If non-nil, the scratch buffer has been edited.")
(def-popup! "*doom*" :align below :size 35 :select t)
(def-popup! "^\\*doom.+\\*$" :regexp t :align below :size 12 :noselect t)
(define-derived-mode doom-mode fundamental-mode "DOOM"
"Major mode for special DOOM buffers.")