gnu: Add emacs-imenu-list.

* gnu/packages/emacs-xyz.scm (emacs-imenu-list): New variable.
This commit is contained in:
John Soo 2020-04-01 10:36:39 +02:00 committed by Nicolas Goaziou
parent 1d5c93d9f8
commit 61e10fa839
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1978,6 +1978,31 @@ (define-public emacs-graphviz-dot-mode
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")