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

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

[nongnu] elpa/scroll-on-jump a2d6996a36 24/31: Cleanup: use defgroup


From: ELPA Syncer
Subject: [nongnu] elpa/scroll-on-jump a2d6996a36 24/31: Cleanup: use defgroup
Date: Thu, 7 Jul 2022 12:03:14 -0400 (EDT)

branch: elpa/scroll-on-jump
commit a2d6996a36ee2d3d4d4426d1bea60b6717ded10d
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: use defgroup
---
 scroll-on-jump.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/scroll-on-jump.el b/scroll-on-jump.el
index d22807feae..11b52c0119 100644
--- a/scroll-on-jump.el
+++ b/scroll-on-jump.el
@@ -40,19 +40,20 @@
 ;; ---------------------------------------------------------------------------
 ;; Custom Variables
 
+(defgroup scroll-on-jump nil
+  "Configure smooth scrolling when jumping to new locations."
+  :group 'scrolling)
+
 (defcustom scroll-on-jump-duration 0.4
   "Duration (in seconds) for scrolling to the next position (zero disables)."
-  :group 'scroll-on-jump
   :type 'integer)
 
 (defcustom scroll-on-jump-smooth t
   "Use smooth (pixel) scrolling, otherwise scroll by lines."
-  :group 'scroll-on-jump
   :type 'boolean)
 
 (defcustom scroll-on-jump-use-curve t
   "Apply a curve to the scroll speed, starting and ending slow."
-  :group 'scroll-on-jump
   :type 'boolean)
 
 



reply via email to

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