diff options
author | Ahmad Draidi <a.r.draidi@redscript.org> | 2023-07-21 18:44:32 +0400 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-30 07:45:43 +0200 |
commit | 34a34d64b5d79c5bc22f4dde4cff6da0afb44f1b (patch) | |
tree | 8381a014d9d5ee2c4542027921750cd686f2087d /gnu | |
parent | ce6a84a55ee6973c65aade06fd9c1ee291d7be0c (diff) | |
download | guix-34a34d64b5d79c5bc22f4dde4cff6da0afb44f1b.tar.gz guix-34a34d64b5d79c5bc22f4dde4cff6da0afb44f1b.zip |
gnu: emacs-idle-highlight: Restyle format.
* gnu/packages/emacs-xyz.scm (emacs-idle-highlight): Restyle format.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 680feba7a9..358b5a4fdb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -17328,26 +17328,27 @@ is the primary mode of interaction.") (define-public emacs-idle-highlight (let ((commit "f9091c907d41e7b12d99d108a194229b8dbfc5ae") (revision "0")) - (package - (name "emacs-idle-highlight") - (version (git-version "1.1.4" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://codeberg.org/ideasman42/emacs-idle-highlight-mode") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0757x4iy7q0mj1rshlxr00hbc78g5hzijgzyqs36nrw6bn65fb93")))) - (build-system emacs-build-system) - (home-page "https://codeberg.org/ideasman42/emacs-idle-highlight-mode") - (synopsis "Highlights all occurrences of the word the point is on") - (description - "This Emacs package provides @code{idle-highlight-mode} that sets + (package + (name "emacs-idle-highlight") + (version (git-version "1.1.4" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url + "https://codeberg.org/ideasman42/emacs-idle-highlight-mode") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0757x4iy7q0mj1rshlxr00hbc78g5hzijgzyqs36nrw6bn65fb93")))) + (build-system emacs-build-system) + (home-page "https://codeberg.org/ideasman42/emacs-idle-highlight-mode") + (synopsis "Highlights all occurrences of the word the point is on") + (description + "This Emacs package provides @code{idle-highlight-mode} that sets an idle timer to highlight all occurrences in the buffer of the word under the point.") - (license license:gpl3+)))) + (license license:gpl3+)))) (define-public emacs-ox-twbs (package |