[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/pulsar b1634a728d 1/7: Move the basic user options clos
From: |
ELPA Syncer |
Subject: |
[elpa] externals/pulsar b1634a728d 1/7: Move the basic user options closer to the top |
Date: |
Mon, 18 Nov 2024 00:58:40 -0500 (EST) |
branch: externals/pulsar
commit b1634a728d068b3cf7f137cf06e4b51135ee69da
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Move the basic user options closer to the top
---
pulsar.el | 48 ++++++++++++++++++++++++------------------------
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/pulsar.el b/pulsar.el
index 2933507b5a..bf0ccccf89 100644
--- a/pulsar.el
+++ b/pulsar.el
@@ -87,6 +87,30 @@ Extension of `pulse.el'."
;;;; User options
+(defcustom pulsar-pulse t
+ "When non-nil enable pulsing.
+Otherwise the highlight stays on the current line until another
+command is invoked."
+ :type 'boolean
+ :package-version '(pulsar . "0.2.0")
+ :group 'pulsar)
+
+(defcustom pulsar-delay 0.05
+ "Delay between increments of a pulse.
+Together with `pulsar-iterations' control the overall duration of
+a pulse. Only applies when `pulsar-pulse' is non-nil."
+ :type 'number
+ :package-version '(pulsar . "0.1.0")
+ :group 'pulsar)
+
+(defcustom pulsar-iterations pulse-iterations
+ "Number of iterations in a pulse highlight.
+Together with `pulsar-delay' control the overall duration of a
+pulse. Only applies when `pulsar-pulse' is non-nil."
+ :type 'number
+ :package-version '(pulsar . "0.1.0")
+ :group 'pulsar)
+
(defcustom pulsar-pulse-functions
'(backward-page
bookmark-jump
@@ -238,30 +262,6 @@ background attribute."
:package-version '(pulsar . "1.2.0")
:group 'pulsar)
-(defcustom pulsar-pulse t
- "When non-nil enable pulsing.
-Otherwise the highlight stays on the current line until another
-command is invoked."
- :type 'boolean
- :package-version '(pulsar . "0.2.0")
- :group 'pulsar)
-
-(defcustom pulsar-delay 0.05
- "Delay between increments of a pulse.
-Together with `pulsar-iterations' control the overall duration of
-a pulse. Only applies when `pulsar-pulse' is non-nil."
- :type 'number
- :package-version '(pulsar . "0.1.0")
- :group 'pulsar)
-
-(defcustom pulsar-iterations pulse-iterations
- "Number of iterations in a pulse highlight.
-Together with `pulsar-delay' control the overall duration of a
-pulse. Only applies when `pulsar-pulse' is non-nil."
- :type 'number
- :package-version '(pulsar . "0.1.0")
- :group 'pulsar)
-
;;;; Faces
(defgroup pulsar-faces ()
- [elpa] externals/pulsar updated (ab0e2b727f -> e231995122), ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar e4af31b85a 3/7: Untabify the buffer, ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar 1733d61d52 5/7: Simplify the Commentary, ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar d0c41eb30e 4/7: Reword the pulsar-inhibit-hidden-buffers doc string, ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar b1634a728d 1/7: Move the basic user options closer to the top,
ELPA Syncer <=
- [elpa] externals/pulsar 90cd726371 6/7: Document pulsar-pulse-region-functions in the manual, ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar e231995122 7/7: Document the pulsar-pulse-on-window-change in the manual, ELPA Syncer, 2024/11/18
- [elpa] externals/pulsar 65eb84a557 2/7: Make the window state change pulse not consider the minibuffer, ELPA Syncer, 2024/11/18