guix-commits
[Top][All Lists]
Advanced

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

87/88: gnu: Add emacs-git-auto-commit-mode.


From: Oleg Pykhalov
Subject: 87/88: gnu: Add emacs-git-auto-commit-mode.
Date: Wed, 2 May 2018 13:21:20 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit c9efc2295bfdf593275e80b86ea907108ccfa00c
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:15:15 2018 +0300

    gnu: Add emacs-git-auto-commit-mode.
    
    * gnu/packages/emacs.scm (emacs-git-auto-commit-mode): New public variable.
---
 gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index b01c422..c6f8795 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10197,3 +10197,27 @@ in at the first line of the current buffer.  This is 
useful when you have a
 very long function that spreads more than a screen, and you don't have to
 scroll up to read the function name and then scroll down to original 
position.")
       (license license:gpl3+))))
+
+(define-public emacs-git-auto-commit-mode
+  (package
+    (name "emacs-git-auto-commit-mode")
+    (version "4.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/ryuslash/git-auto-commit-mode/archive/";
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/ryuslash/git-auto-commit-mode";)
+    (synopsis "Emacs Minor mode to automatically commit and push")
+    (description "@code{git-auto-commit-mode} is an Emacs minor mode that
+tries to commit changes to a file after every save.
+
+When @code{gac-automatically-push-p} is non-nil, it also tries to push to
+the current upstream.")
+    (license license:gpl3+)))



reply via email to

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