guix-commits
[Top][All Lists]
Advanced

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

06/09: gnu: Add emacs-imenu-anywhere.


From: guix-commits
Subject: 06/09: gnu: Add emacs-imenu-anywhere.
Date: Mon, 23 Oct 2023 18:04:05 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 1a0bff3971f949a070357e1cd60d3f7e54d1e1e7
Author: Andre A. Gomes <andremegafone@gmail.com>
AuthorDate: Wed Sep 20 21:57:13 2023 +0300

    gnu: Add emacs-imenu-anywhere.
    
    * gnu/packages/emacs-xyz.scm (emacs-imenu-anywhere): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
    Change-Id: I5a381594cdf3692f1ea1602d7d71f8e59e404f60
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c0bb3f7d0a..1e0b02f5d9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5068,6 +5068,30 @@ This buffer is typically shown as a sidebar (Emacs 
vertically splits the
 window).")
       (license license:gpl3+))))
 
+(define-public emacs-imenu-anywhere
+  (package
+    (name "emacs-imenu-anywhere")
+    (version "1.1.6")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/vspinu/imenu-anywhere";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0lbwfhcl40ayxskvmsvdrg8p63qp086xpzw61bqk4b3fxndxl04h"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/vspinu/imenu-anywhere";)
+    (synopsis
+     "Imenu tag selection across buffers with the same mode/project")
+    (description
+     "This Emacs package provides navigation for imenu tags across all buffers
+that satisfy a filtering criteria.  Available criteria are all buffers with
+the same major mode, same project buffers, and user-defined list of friendly
+mode buffers.")
+    (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]