me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-goggles.

* gnu/packages/emacs-xyz.scm (emacs-goggles): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Niklas Eklund 2022-03-01 18:47:25 +01:00 committed by Nicolas Goaziou
parent 8a05fb01d1
commit 8e00050de0
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 20 additions and 0 deletions

View File

@ -12035,6 +12035,26 @@ Emacs that Evil does not cover properly by default, such as @code{help-mode},
being deleted, changed, yanked, or pasted when using evil commands")
(license license:gpl3+))))
(define-public emacs-goggles
(package
(name "emacs-goggles")
(version "0.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/minad/goggles")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "15bqjmwfdqp2np6fln6xjyw59c5iddvzsyga0lvb8raa753cdh2k"))))
(build-system emacs-build-system)
(home-page "https://github.com/minad/goggles")
(synopsis "Pulse modified region")
(description "Goggles highlights the modified region using pulse.
Currently the commands undo, yank, kill and delete are supported.")
(license license:gpl3+)))
(define-public emacs-goto-chg
(package
(name "emacs-goto-chg")