diff options
| author | jao <jao@gnu.org> | 2026-01-21 13:39:57 +0000 |
|---|---|---|
| committer | jao <jao@gnu.org> | 2026-01-21 13:39:57 +0000 |
| commit | 4e71898553e91f629c91fc13a123f85eb1475bae (patch) | |
| tree | 061a54223db2910d51be4b3c075c5247760d879d /custom/jao-custom-programming.el | |
| parent | bfdb1665ca86d1b7ff52a0f839ea6ee6a5f3d59f (diff) | |
| download | elibs-4e71898553e91f629c91fc13a123f85eb1475bae.tar.gz elibs-4e71898553e91f629c91fc13a123f85eb1475bae.tar.bz2 | |
afio: side buffers
Diffstat (limited to 'custom/jao-custom-programming.el')
| -rw-r--r-- | custom/jao-custom-programming.el | 9 |
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 |
