mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-17 5cb5f70b1872a757e93ea333b0e2dca50c6c8957
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
64
65
66
67
68
69
70
71
72
73
74
75
76
;;; flymake-tip.el --- show flymake's error by popup-tip -*- lexical-binding: t; -*-
 
;; Copyright (C) 2014 by Yuta Yamada
 
;; Author: Yuta Yamada <cokesboy"at"gmail.com>
;; URL: https://github.com/yuutayamada/flycheck-tip
;; Version: 0.5.0
;; Package-Requires: ((emacs "24.1"))
;; Keywords: flymake
 
;;; License:
;; This program 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.
;;
;; This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
 
;;; Code:
 
(require 'error-tip)
(require 'flymake)
(require 'cl-lib)
 
(defvar flymake-tip--err-info-function
  (cond
   ((version<= "26" (number-to-string emacs-major-version))
    '(lambda ()
       ;; Return list of string of error/warning info on the current cursor
       (cl-loop for diag in (flymake-diagnostics (point-at-bol) (point-at-eol))
                collect (flymake-diagnostic-text diag))))
 
   ((fboundp 'flymake-find-err-info)
    '(lambda ()
       ;; Old implementation for emacs-major-version < 26
       (cl-loop
        with errors = (flymake-find-err-info flyamke-err-info (line-number-at-pos))
        for err in (car errors)
        if (vectorp err)
        collect (elt err 4))))))
 
;;;###autoload
(defun flymake-tip-cycle (reverse)
  (interactive)
  (let ((jump (lambda ()
                (if reverse
                    (flymake-goto-prev-error)
                  (flymake-goto-next-error)))))
    (let ((line (line-number-at-pos)))
      (funcall jump)
      (when (eq line (line-number-at-pos))
        (goto-char (if reverse (point-at-bol) (point-at-eol)))
        (funcall jump))))
  (error-tip-popup-error-message
   (funcall flymake-tip--err-info-function)))
 
;;;###autoload
(defun flymake-tip-cycle-reverse ()
  (interactive)
  (flymake-tip-cycle t))
 
(provide 'flymake-tip)
 
;; Local Variables:
;; coding: utf-8
;; mode: emacs-lisp
;; End:
 
;;; flymake-tip.el ends here