From 077255abc02b88e422845aecbba1fa6c9c174b8f Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 15 Oct 2022 13:11:21 -0700 Subject: ref(flymake): add comments for the sections Change-Id: Ic81ec491542ded173460058e5c97c798317c7a08 --- emacs/custom/my-flymake.el | 3 +++ 1 file changed, 3 insertions(+) (limited to 'emacs') diff --git a/emacs/custom/my-flymake.el b/emacs/custom/my-flymake.el index 74ae98d..40f6ab9 100644 --- a/emacs/custom/my-flymake.el +++ b/emacs/custom/my-flymake.el @@ -7,13 +7,16 @@ (require 'flymake) +;;; settings (setq flymake-start-on-save-buffer t) (setq elisp-flymake-byte-compile-load-path load-path) +;;; bindings (define-key flymake-mode-map (kbd "C-c ! n") 'flymake-goto-next-error) (define-key flymake-mode-map (kbd "C-c ! p") 'flymake-goto-prev-error) (define-key flymake-mode-map (kbd "C-c ! d") 'flymake-show-diagnostics-buffer) +;;; hooks (dolist (hook '(prog-mode-hook conf-mode-hook)) (add-hook hook 'flymake-mode)) -- cgit 1.4.1