guix-commits
[Top][All Lists]
Advanced

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

39/88: gnu: Add emacs-helm-mode-manager.


From: Oleg Pykhalov
Subject: 39/88: gnu: Add emacs-helm-mode-manager.
Date: Wed, 2 May 2018 13:21:11 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 295513c618edcbab888da67057bcd629bb74c630
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:03:20 2018 +0300

    gnu: Add emacs-helm-mode-manager.
    
    * gnu/packages/emacs.scm (emacs-helm-mode-manager): New public variable.
---
 gnu/packages/emacs.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index bae0184..1419b99 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8991,3 +8991,34 @@ within Emacs.")
       (description "Adds functionality to Emacs @code{ibuffer} for
 grouping buffers by their projectile root directory.")
       (license license:gpl3+))))
+
+(define-public emacs-helm-mode-manager
+  (package
+    (name "emacs-helm-mode-manager")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/istib/helm-mode-manager/";
+                           "archive/" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-helm" ,emacs-helm)))
+    (home-page "https://github.com/istib/helm-mode-manager/";)
+    (synopsis "Switch and toggle Emacs major and minor modes using Helm")
+    (description "This package provides a Helm interface for toggling Emacs
+major or minor mode.
+
address@hidden
address@hidden @code{helm-switch-major-mode} list of all major modes
address@hidden @code{helm-enable-minor-mode} list of all inactive minor modes
address@hidden @code{helm-disable-minor-mode} list of all ACTIVE minor modes
address@hidden itemize\n
+
+Hitting @code{RET} enables the mode, @code{C-z} shows the mode
+documentation.")
+    (license license:gpl3+)))



reply via email to

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