emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/flymake-popon 3c27c51038 6/8: Lower required Emacs version


From: ELPA Syncer
Subject: [nongnu] elpa/flymake-popon 3c27c51038 6/8: Lower required Emacs version and elaborate README
Date: Sun, 22 May 2022 12:58:38 -0400 (EDT)

branch: elpa/flymake-popon
commit 3c27c51038a06ac533c8de6accc6caf043add9b5
Author: Akib Azmain Turja <akib@disroot.org>
Commit: Akib Azmain Turja <akib@disroot.org>

    Lower required Emacs version and elaborate README
---
 README.org       | 26 ++++++++++++++++++++++++--
 flymake-popon.el |  5 ++++-
 2 files changed, 28 insertions(+), 3 deletions(-)

diff --git a/README.org b/README.org
index 18482b4246..a279ab7a44 100644
--- a/README.org
+++ b/README.org
@@ -1,5 +1,27 @@
 #+title: ~flymake-popon~ - Flymake diagnostics on cursor hover
 
 This package shows Flymake diagnostics on cursor hover.  This works on
-both graphical and non-graphical displays.  Enable it with
-=M-x flymake-popon-mode=.
+both graphical and non-graphical displays.
+
+* Installation
+
+** Quelpa
+
+#+begin_src emacs-lisp
+(quelpa '(flymake-popon
+          :fetcher git
+          :url "https://codeberg.org/akib/emacs-flymake-popon.git";))
+#+end_src
+
+** Straight.el
+
+#+begin_src emacs-lisp
+(straight-use-package
+ '(popon :type git
+         :repo "https://codeberg.org/akib/emacs-flymake-popon.git";))
+#+end_src
+
+* Usage
+
+Enable with =M-x flymake-popon-mode=.  All customization options can be
+found by =M-x customize-group RET flymake-popon=.
diff --git a/flymake-popon.el b/flymake-popon.el
index 1d66111531..92942cd33f 100644
--- a/flymake-popon.el
+++ b/flymake-popon.el
@@ -5,7 +5,7 @@
 ;; Author: Akib Azmain Turja <akib@disroot.org>
 ;; Created: 2022-04-28
 ;; Version: 0.1
-;; Package-Requires: ((emacs "27.1") flymake popon posframe)
+;; Package-Requires: ((emacs "26.1") (flymake "0") (popon "0") (posframe "0"))
 ;; Keywords: convenience
 ;; Homepage: https://codeberg.org/akib/emacs-flymake-popon
 
@@ -211,6 +211,7 @@ The value should be in seconds."
   (setq flymake-popon--timer
         (run-with-timer flymake-popon-delay nil #'flymake-popon--show)))
 
+;;;###autoload
 (define-minor-mode flymake-popon-mode
   "Toggle show Flymake diagnostics on cursor hover."
   nil " Flymake-Popon" nil
@@ -221,7 +222,9 @@ The value should be in seconds."
     (remove-hook 'pre-command-hook #'flymake-popon--hide t)
     (remove-hook 'post-command-hook #'flymake-popon--post-command t)))
 
+;;;###autoload
 (define-globalized-minor-mode global-flymake-popon-mode flymake-popon-mode
   flymake-popon-mode)
 
+(provide 'flymake-popon)
 ;;; flymake-popon.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]