emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 7462d98a639d42292da3a8165c5393b951489d5c 2154 bytes (raw)
name: lisp/org-flymake.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
;;; org-flymake.el --- Org support for flymake.el  -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2018 Free Software Foundation, Inc.
;;
;; This file is a part of GNU Emcas.
;;
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
;;
;;
;;; Commentary:
;; This file implements support for flymake.el in org mode buffers.
;; To enable it permanently in all org buffers, add this to your Emacs
;; configuration file:
;;
;; (add-hook 'org-mode-hook #'org-flymake-setup)
;;
;; Flymake supports multiple backends.  Currently we use `org-lint' only.

;;; Code:

(eval-when-compile
  (require 'cl-lib))
(require 'org-lint)
(require 'seq)

(defun org-flymake-org-lint-backend (report-fn &rest _args)
  "A Flymake backend for `org-lint'.
Calls REPORT-FN directly."
  (let* ((report (org-lint--generate-reports
		  (current-buffer) org-lint--checkers))
	 (report (mapcar
		  (lambda (c) (seq-into (nth 0 (cdr c)) 'list))
		  report)))
    (funcall report-fn
	     (cl-loop
	      for (line _trust description _checkers) in report
	      for (beg . end) = (flymake-diag-region (current-buffer) (string-to-number line))
	      collect
	      (flymake-make-diagnostic (current-buffer) beg end :note description)))
    report))

;;;###autoload
(defun org-flymake-setup ()
  "Add `org-flymake' to `flymake-diagnostic-functions'."
  (if (< emacs-major-version 26)
      (user-error "Org-flymake requires Emacs 26.1 or greater")
    (add-hook 'flymake-diagnostic-functions #'org-flymake-org-lint-backend nil t)
    (flymake-mode)))

(provide 'org-flymake)

;;; org-flymake.el ends here

debug log:

solving 7462d98a6 ...
found 7462d98a6 in https://list.orgmode.org/orgmode/87k1r9te7f.fsf@gmail.com/

applying [1/1] https://list.orgmode.org/orgmode/87k1r9te7f.fsf@gmail.com/
diff --git a/lisp/org-flymake.el b/lisp/org-flymake.el
new file mode 100644
index 000000000..7462d98a6

Checking patch lisp/org-flymake.el...
Applied patch lisp/org-flymake.el cleanly.

skipping https://list.orgmode.org/orgmode/87k1r9te7f.fsf@gmail.com/ for 7462d98a6
index at:
100644 7462d98a639d42292da3a8165c5393b951489d5c	lisp/org-flymake.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).