guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-imenu-list.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-imenu-list.
Date: Wed, 01 Apr 2020 04:36:59 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 61e10fa  gnu: Add emacs-imenu-list.
61e10fa is described below

commit 61e10fa8394307f461922a1cb55897422c38ce75
Author: John Soo <address@hidden>
AuthorDate: Wed Apr 1 10:36:39 2020 +0200

    gnu: Add emacs-imenu-list.
    
    * gnu/packages/emacs-xyz.scm (emacs-imenu-list): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fa02b36..b7aa64e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1978,6 +1978,31 @@ files using the dot syntax, and use Graphviz to convert 
these files to
 diagrams.")
       (license license:gpl2+))))
 
+(define-public emacs-imenu-list
+  (package
+    (name "emacs-imenu-list")
+    (version "0.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/bmag/imenu-list";)
+         (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13xh9bdl3k6ccfq83wjmkpi4269qahv4davki4wq18dr4amrzhlx"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/bmag/imenu-list";)
+    (synopsis
+     "Automatically tracks the current buffer's imenu entries")
+    (description
+     "This Emacs minor mode creates an automatically updated buffer called
+@code{*Ilist*} that is populated with the current buffer's imenu entries.
+This buffer is typically shown as a sidebar (Emacs vertically splits the
+window).")
+    (license license:gpl3+)))
+
 (define-public emacs-mmm-mode
   (package
     (name "emacs-mmm-mode")



reply via email to

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