diff options
author | Kurome <hunt31999@gmail.com> | 2025-04-11 16:36:25 +0900 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-30 18:33:31 +0200 |
commit | b63dbe2d07808755852360a3c32f0dd472ef6f06 (patch) | |
tree | 3cc283ba13112e998ca3c61b0e0a5eea580207cc | |
parent | 8285c2c32a6aeed413e2b09980a0e9111ac904c8 (diff) |
gnu: Add emacs-smooth-scroll.
* gnu/packages/emacs-xyz.scm (emacs-smooth-scroll): New variable.
Change-Id: I81c89e40a89acac94f0e5611b312eb88056cd4b3
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6d10fb7737..4ebb6b4852 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29367,6 +29367,26 @@ When @code{gac-automatically-push-p} is non-nil, it also tries to push to the current upstream.") (license license:gpl3+))) +(define-public emacs-smooth-scroll + (package + (name "emacs-smooth-scroll") + (version "1.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/k-talo/smooth-scroll.el") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0d2qzpgh486cp0aa12ky1np1i49d0gskvldfw627v55qsm6ql9ll")))) + (build-system emacs-build-system) + (home-page "https://github.com/k-talo/smooth-scroll.el") + (synopsis "Minor mode for smooth and in-place scrolling in Emacs") + (description "This package provides the @code{smooth-scroll-mode} minor mode + for Emacs, enabling smooth and in-place scrolling functionality.") + (license license:gpl3+))) + (define-public emacs-scroll-on-drag (let ((commit "179c2acecc48d3ceca4b449b2a225d684002bb32") (revision "2")) |