me
/
guix
Archived
1
0
Fork 0

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
Andre A. Gomes 2023-09-20 21:57:13 +03:00 committed by Ludovic Courtès
parent 2861c70b9e
commit 1a0bff3971
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 24 additions and 0 deletions

View File

@ -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")