General refactor & cleanup
+ refactor package management + core-editor: describe ediff + core-popups: alphabetized hack blocks + ui/doom-modeline: refactor buffer path fn + feature/version-control/+git: autoload magit-blame
This commit is contained in:
parent
af88423b35
commit
25fa4e019c
5 changed files with 21 additions and 21 deletions
|
@ -392,6 +392,13 @@ the command buffer."
|
|||
(doom--switch-from-popup (find-function-search-for-symbol fun 'defface file)))))
|
||||
|
||||
|
||||
(after! mu4e
|
||||
(defun doom*mu4e-popup-window (buf height)
|
||||
(doom-popup-buffer buf :size 10 :noselect t)
|
||||
buf)
|
||||
(advice-add #'mu4e~temp-window :override #'doom*mu4e-popup-window))
|
||||
|
||||
|
||||
(after! neotree
|
||||
;; Neotree has its own window/popup management built-in, which is difficult to
|
||||
;; police. For example, switching perspectives will cause neotree to forget it
|
||||
|
@ -406,22 +413,15 @@ the command buffer."
|
|||
(doom-popup-buffer buf)))
|
||||
|
||||
|
||||
(after! mu4e
|
||||
(defun doom*mu4e-popup-window (buf height)
|
||||
(doom-popup-buffer buf :size 10 :noselect t)
|
||||
buf)
|
||||
(advice-add #'mu4e~temp-window :override #'doom*mu4e-popup-window))
|
||||
(after! quickrun
|
||||
;; don't auto-focus quickrun windows, shackle handles that
|
||||
(setq quickrun-focus-p nil))
|
||||
|
||||
|
||||
(after! twittering-mode
|
||||
(setq twittering-pop-to-buffer-function #'pop-to-buffer))
|
||||
|
||||
|
||||
(after! quickrun
|
||||
;; don't auto-focus quickrun windows, shackle handles that
|
||||
(setq quickrun-focus-p nil))
|
||||
|
||||
|
||||
(after! xref
|
||||
(defun doom*xref-follow-and-close (orig-fn &rest args)
|
||||
"Jump to the xref on the current line, select its window and close the popup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue