[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/flymake-refactor 1116aa7 6/6: * lisp/progmodes/fly
From: |
João Távora |
Subject: |
[Emacs-diffs] scratch/flymake-refactor 1116aa7 6/6: * lisp/progmodes/flymake-ui.el (flymake-mode-map): Bind "M-n" and "M-p" |
Date: |
Thu, 28 Sep 2017 10:28:24 -0400 (EDT) |
branch: scratch/flymake-refactor
commit 1116aa76c8ec93b93f56da3a12feff3d291cbd53
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>
* lisp/progmodes/flymake-ui.el (flymake-mode-map): Bind "M-n" and "M-p"
---
lisp/progmodes/flymake-ui.el | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/lisp/progmodes/flymake-ui.el b/lisp/progmodes/flymake-ui.el
index 7eb2791..2b88051 100644
--- a/lisp/progmodes/flymake-ui.el
+++ b/lisp/progmodes/flymake-ui.el
@@ -604,6 +604,13 @@ backends."
(add-hook 'post-command-hook #'start 'append 'local)
(start))))
+(defvar flymake-mode-map
+ (let ((map (make-sparse-keymap)))
+ (define-key map (kbd "M-n") 'flymake-goto-next-error)
+ (define-key map (kbd "M-p") 'flymake-goto-prev-error)
+ map)
+ "Keymap for `flymake-mode'.")
+
(define-minor-mode flymake-mode nil
:group 'flymake :lighter flymake--mode-line-format
(setq flymake--running-backends nil
- [Emacs-diffs] scratch/flymake-refactor updated (3b6c736 -> 1116aa7), João Távora, 2017/09/28
- [Emacs-diffs] scratch/flymake-refactor 1d58e32 2/6: Fix flymake-wrap-around for buffers with no errors, João Távora, 2017/09/28
- [Emacs-diffs] scratch/flymake-refactor 9d93d46 5/6: New flymake fringe bitmaps, João Távora, 2017/09/28
- [Emacs-diffs] scratch/flymake-refactor 1116aa7 6/6: * lisp/progmodes/flymake-ui.el (flymake-mode-map): Bind "M-n" and "M-p",
João Távora <=
- [Emacs-diffs] scratch/flymake-refactor 38c7d4f 4/6: Remove old flymake-display-err-menu-for-current-line, it's useless, João Távora, 2017/09/28
- [Emacs-diffs] scratch/flymake-refactor 7d3d3d3 1/6: Fix flymake problems when checking C header files, João Távora, 2017/09/28
- [Emacs-diffs] scratch/flymake-refactor 9329265 3/6: Treat flymake errors as just another type of diagnostic, João Távora, 2017/09/28