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.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/custom/jao-custom-programming.el b/custom/jao-custom-programming.el
index c9e33da..8a324f8 100644
--- a/custom/jao-custom-programming.el
+++ b/custom/jao-custom-programming.el
@@ -118,7 +118,9 @@
("p" "previous error" flymake-goto-prev-error)
("c" "consult flymake" consult-flymake)])
- :bind (:map flymake-mode-map (("M-m" . jao-transient-flymake))))
+ :bind (:map flymake-mode-map (("M-m" . jao-transient-flymake)
+ ("M-n" . flymake-goto-next-error)
+ ("M-p" . flymake-goto-prev-error))))
;;;; outline minor mode
(use-package outline
@@ -305,7 +307,6 @@
(setq rust-mode-treesitter-derive nil)
:config
(use-package smartparens-rust :demand t)
- (jao-define-attached-buffer "\\*cargo-.+\\*" 22)
:bind (:map rust-mode-map
("<f3>" . hs-toggle-hiding)
("C-c a" . eglot-code-actions)
@@ -328,6 +329,10 @@
(use-package rust-playground
:ensure t)
+(add-to-list 'display-buffer-alist
+ '("\\*\\(cargo-.+\\|rustic-compilation\\)\\*"
+ (display-buffer-reuse-window jao-display-below-eldoc)
+ (height . 0.5)))
;;;; Clojure
(use-package clojure-mode