mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: Add emacs-super-save.
* gnu/packages/emacs-xyz.scm (emacs-super-save): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
59d52f6d43
commit
05f2938f04
1 changed files with 23 additions and 0 deletions
|
@ -28064,6 +28064,29 @@ (define-public emacs-ssh-agency
|
||||||
passphrase until the first time you push to a remote.")
|
passphrase until the first time you push to a remote.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-super-save
|
||||||
|
(package
|
||||||
|
(name "emacs-super-save")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bbatsov/super-save")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"066fyg4r4pksyandpd7s53hagpvm2rw90q5ks4jlpgy7x00hw09l"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/bbatsov/super-save")
|
||||||
|
(synopsis "Auto-save buffers, based on your activity")
|
||||||
|
(description "Super-save auto-saves your buffers, when certain events
|
||||||
|
happen, e.g., when you switch between buffers or when an Emacs frame loses
|
||||||
|
focus. You can think of it as both something that augments and replaces the
|
||||||
|
standard Auto-save mode.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-tao-theme
|
(define-public emacs-tao-theme
|
||||||
(let ((commit "468ee4f6ba7afb9dbfc8855ae2c333cb16ca4408")
|
(let ((commit "468ee4f6ba7afb9dbfc8855ae2c333cb16ca4408")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue