summaryrefslogtreecommitdiffhomepage
path: root/custom/jao-custom-programming.el
diff options
context:
space:
mode:
Diffstat (limited to 'custom/jao-custom-programming.el')
-rw-r--r--custom/jao-custom-programming.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/custom/jao-custom-programming.el b/custom/jao-custom-programming.el
index 8a324f8..2fd1212 100644
--- a/custom/jao-custom-programming.el
+++ b/custom/jao-custom-programming.el
@@ -108,7 +108,6 @@
:ensure t
:custom ((flymake-mode-line-format '(" " flymake-mode-line-counters)))
:config
- (jao-define-attached-buffer "^\\*Flymake diagnostics .*\\*\\'")
(transient-define-prefix jao-transient-flymake ()
["Flymake"
@@ -118,6 +117,12 @@
("p" "previous error" flymake-goto-prev-error)
("c" "consult flymake" consult-flymake)])
+ (add-to-list 'display-buffer-alist
+ '("^\\*Flymake diagnostics .*\\*\\'"
+ (display-buffer-reuse-window jao-display-below-eldoc)
+ (height . 0.3)
+ (dedicated . t)))
+
:bind (:map flymake-mode-map (("M-m" . jao-transient-flymake)
("M-n" . flymake-goto-next-error)
("M-p" . flymake-goto-prev-error))))