update packages
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "flycheck-posframe" "20220715.133"
|
||||
(define-package "flycheck-posframe" "20260409.14"
|
||||
"Show flycheck error messages using posframe.el."
|
||||
'((flycheck "0.24")
|
||||
(emacs "26")
|
||||
(posframe "0.7.0"))
|
||||
:url "https://github.com/alexmurray/flycheck-posframe"
|
||||
:commit "19896b922c76a0f460bf3fe8d8ebc2f9ac9028d8"
|
||||
:revdesc "19896b922c76"
|
||||
:commit "aeccb14e90ba25f45e1919b776777fc6ec95e251"
|
||||
:revdesc "aeccb14e90ba"
|
||||
:authors '(("Alex Murray" . "murray.alex@gmail.com"))
|
||||
:maintainers '(("Alex Murray" . "murray.alex@gmail.com")))
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
;; Author: Alex Murray <murray.alex@gmail.com>
|
||||
;; Maintainer: Alex Murray <murray.alex@gmail.com>
|
||||
;; URL: https://github.com/alexmurray/flycheck-posframe
|
||||
;; Package-Version: 20220715.133
|
||||
;; Package-Revision: 19896b922c76
|
||||
;; Package-Version: 20260409.14
|
||||
;; Package-Revision: aeccb14e90ba
|
||||
;; Package-Requires: ((flycheck "0.24") (emacs "26") (posframe "0.7.0"))
|
||||
|
||||
;; This file is not part of GNU Emacs.
|
||||
@@ -199,6 +199,10 @@ Only the `foreground' is used in this face."
|
||||
"Hide posframe if position has changed since last display."
|
||||
(not (flycheck-posframe-check-position)))
|
||||
|
||||
(defun flycheck-posframe-point-position-p ()
|
||||
"Return non-nil if `flycheck-posframe-position' is a point-based position."
|
||||
(string-prefix-p "point-" (symbol-name flycheck-posframe-position)))
|
||||
|
||||
(defun flycheck-posframe-show-posframe (errors)
|
||||
"Display ERRORS, using posframe.el library."
|
||||
(posframe-hide flycheck-posframe-buffer)
|
||||
@@ -218,7 +222,9 @@ Only the `foreground' is used in this face."
|
||||
(flycheck-posframe-highest-error-level-face errors)
|
||||
'flycheck-posframe-border-face) nil t)
|
||||
:poshandler poshandler
|
||||
:hidehandler #'flycheck-posframe-hidehandler))))
|
||||
:hidehandler #'flycheck-posframe-hidehandler
|
||||
:y-pixel-offset (when (flycheck-posframe-point-position-p)
|
||||
flycheck-posframe-border-width)))))
|
||||
|
||||
;;;###autoload
|
||||
(defun flycheck-posframe-configure-pretty-defaults ()
|
||||
|
||||
Reference in New Issue
Block a user