[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/flymake-refactor 820b460 10/12: Add interactive fl
From: |
João Távora |
Subject: |
[Emacs-diffs] scratch/flymake-refactor 820b460 10/12: Add interactive flymake-start function |
Date: |
Wed, 27 Sep 2017 13:47:30 -0400 (EDT) |
branch: scratch/flymake-refactor
commit 820b4604b2e6d523d6bc0b3a42c1ca92dbe7818d
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>
Add interactive flymake-start function
* lisp/progmodes/flymake-ui.el (flymake-on-timer-event)
(flymake-after-change-function, flymake-mode): Call
flymake-start.
(flymake-start): Rename from flymake--start-syntax-check.
---
lisp/progmodes/flymake-ui.el | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/lisp/progmodes/flymake-ui.el b/lisp/progmodes/flymake-ui.el
index 33db296..f39ecf4 100644
--- a/lisp/progmodes/flymake-ui.el
+++ b/lisp/progmodes/flymake-ui.el
@@ -437,7 +437,7 @@ return DEFAULT."
(setq flymake-last-change-time nil)
(flymake-log 3 "starting syntax check as more than 1 second passed
since last change")
- (flymake--start-syntax-check)))))
+ (flymake-start)))))
(define-obsolete-function-alias 'flymake-display-err-menu-for-current-line
'flymake-popup-current-error-menu "24.4")
@@ -567,15 +567,22 @@ sources."
err)
(flymake--stop-backend backend))))
-(defun flymake--start-syntax-check (&optional deferred)
+(defun flymake-start (&optional deferred interactive)
"Start a syntax check.
Start it immediately, or after current command if DEFERRED is
-non-nil."
+non-nil. With optional INTERACTIVE or interactively, clear any
+stale information about running and automatically disabled
+backends."
+ (interactive (list nil t))
(cl-labels
((start
()
(remove-hook 'post-command-hook #'start 'local)
(setq flymake-check-start-time (float-time))
+ (when interactive
+ (setq flymake--diagnostics-table (make-hash-table)
+ flymake--running-backends nil
+ flymake--disabled-backends nil))
(dolist (backend flymake-diagnostic-functions)
(cond ((memq backend flymake--running-backends)
(flymake-log 2 "Backend %s still running, not restarting"
@@ -610,7 +617,7 @@ non-nil."
(setq flymake--diagnostics-table (make-hash-table))
(when flymake-start-syntax-check-on-find-file
- (flymake--start-syntax-check)))))
+ (flymake-start)))))
;; Turning the mode OFF.
(t
@@ -641,13 +648,13 @@ non-nil."
(let((new-text (buffer-substring start stop)))
(when (and flymake-start-syntax-check-on-newline (equal new-text "\n"))
(flymake-log 3 "starting syntax check as new-line has been seen")
- (flymake--start-syntax-check 'deferred))
+ (flymake-start 'deferred))
(setq flymake-last-change-time (float-time))))
(defun flymake-after-save-hook ()
(when flymake-mode
(flymake-log 3 "starting syntax check as buffer was saved")
- (flymake--start-syntax-check))) ; no more mode 3. cannot start check if
mode 3 (to temp copies) is active - (???)
+ (flymake-start))) ; no more mode 3. cannot start check if mode 3 (to temp
copies) is active - (???)
(defun flymake-kill-buffer-hook ()
(when flymake-timer
- [Emacs-diffs] scratch/flymake-refactor updated (7140018 -> 3b6c736), João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor d68448f 01/12: More cleanup before advancing to backend redesign, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 245114e 08/12: Fix autoload conflict between flymake.el and flymake-ui.el, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 879dcef 04/12: Misc cleanup in flymake-proc.el, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor e1b913f 11/12: Re-implement wraparound for flymake-goto-next-error, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 8e42a5d 06/12: Cleanup some flymake-ui.el internals, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 3dfe11c 03/12: Simplify flymake logging and erroring., João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 820b460 10/12: Add interactive flymake-start function,
João Távora <=
- [Emacs-diffs] scratch/flymake-refactor 4fea8a9 05/12: Allow filtering in flymake-goto-[next/prev]-error, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 4e2cbaa 07/12: Fancy mode-line construct for flymake-mode, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 3b6c736 12/12: Start rewriting flymake manual, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 26f1e0c 02/12: Replace flymake-backends with flymake-diagnostic-functions, João Távora, 2017/09/27
- [Emacs-diffs] scratch/flymake-refactor 7a22358 09/12: A couple of new flymake backends for emacs-lisp-mode, João Távora, 2017/09/27