Skip to content

Instantly share code, notes, and snippets.

@tam17aki
Created August 12, 2020 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tam17aki/873cb5c0dbb76dfac4c1801c03df1fae to your computer and use it in GitHub Desktop.
Save tam17aki/873cb5c0dbb76dfac4c1801c03df1fae to your computer and use it in GitHub Desktop.
;;; flymake-posframe.el --- Display flymake diagnostics at point -*- lexical-binding: t; -*-
;; Copyright (C) 2018 Aya Igarashi
;; Copyright (C) 2020 by Akira TAMAMORI
;; Author: Aya Igarashi <ladiclexxx@gmail.com>
;; URL: https://github.com/Ladicle/flymake-posframe
;; Keywords: convenience, languages, tools
;; Version: 1.0.0
;; Package-Requires: ((emacs "26.1") (posframe "0.4.2"))
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Display flymake message at point using a posframe.
;; Check out the README for more information.
;;; Code:
(require 'flymake)
(require 'posframe)
(defcustom flymake-posframe-error-prefix "!! "
"String to be displayed before every error line."
:group 'flymake-posframe
:type '(choice (const :tag "No prefix" nil)
string))
(defcustom flymake-posframe-warning-prefix "! "
"String to be displayed before every warning line."
:group 'flymake-posframe
:type '(choice (const :tag "No prefix" nil)
string))
(defcustom flymake-posframe-note-prefix "? "
"String to be displayed before every note line."
:group 'flymake-posframe
:type '(choice (const :tag "No prefix" nil)
string))
(defcustom flymake-posframe-buffer " *flymake-posframe-buffer*"
"Name of the flymake posframe buffer."
:group 'flymake-posframe
:type 'string)
(defvar-local flymake-posframe-last-diag nil
"Show the error at point.")
(defvar flymake-posframe-hide-posframe-hooks
'(pre-command-hook post-command-hook focus-out-hook)
"The hooks which should trigger automatic removal of the posframe.")
(defface flymake-posframe-background-face
'((t :inherit highlight))
"The background color of the flymake-posframe frame.
Only the `background' is used in this face."
:group 'flymake-posframe)
(defface flymake-posframe-foreground-face
'((t :inherit highlight))
"The background color of the flymake-posframe frame.
Only the `foreground' is used in this face."
:group 'flymake-posframe)
(defun flymake-posframe-get-diagnostic-text ()
"Get the flymake diagnostic text for the thing at point."
(flymake--diag-text (get-char-property (point) 'flymake-diagnostic)))
(defun flymake-posframe-hide ()
(posframe-hide flymake-posframe-buffer)
(dolist (hook flymake-posframe-hide-posframe-hooks)
(remove-hook hook #'flymake-posframe-hide t)))
(defvar flymake-posframe-diag nil)
(defvar current-posframe-frame nil)
(defun flymake-posframe-display ()
(when flymake-mode
(setq flymake-posframe-diag (get-char-property (point) 'flymake-diagnostic))
(if flymake-posframe-diag
(unless (and (eq flymake-posframe-diag flymake-posframe-last-diag)
(frame-visible-p (buffer-local-value 'posframe--frame (get-buffer flymake-posframe-buffer))))
(setq flymake-posframe-last-diag flymake-posframe-diag)
(posframe-show
flymake-posframe-buffer
:internal-border-width 3
:left-fringe 1
:right-fringe 1
:foreground-color (face-foreground 'flymake-posframe-foreground-face nil t)
:background-color (face-background 'flymake-posframe-background-face nil t)
:string (concat (propertize
(pcase (flymake--diag-type flymake-posframe-diag)
(:error flymake-posframe-error-prefix)
(:warning flymake-posframe-warning-prefix)
(:note flymake-posframe-note-prefix))
'face 'warning)
(flymake--diag-text flymake-posframe-diag)))
(setq current-posframe-frame
(buffer-local-value 'posframe--frame (get-buffer flymake-posframe-buffer)))
(redirect-frame-focus current-posframe-frame (frame-parent current-posframe-frame))
(dolist (hook flymake-posframe-hide-posframe-hooks)
(add-hook hook #'flymake-posframe-hide nil t)))
(flymake-posframe-hide))))
(define-minor-mode flymake-posframe-mode
"Minor mode for displaying flymake diagnostics at point."
:lighter nil
:group flymake-posframe
(cond
(flymake-posframe-mode
(add-hook 'post-command-hook #'flymake-posframe-display nil 'local))
(t
(remove-hook 'post-command-hook #'flymake-posframe-display 'local))))
(provide 'flymake-posframe)
;;; flymake-posframe.el ends here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment