gnu: Add emacs-consult-projectile.
* gnu/packages/emacs-xyz.scm (emacs-consult-projectile): New variable. Change-Id: Id7de103e052b0900069757fe56ddc1b10a875660 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>master
parent
05cf5f6d47
commit
3bd9ac84e4
|
@ -39934,6 +39934,32 @@ workspace diagnostics, symbols, and file symbols from @{emacs-lsp-mode}
|
|||
by leveraging @code{emacs-consult} APIs.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-consult-projectile
|
||||
(let ((commit "400439c56d17bca7888f7d143d8a11f84900a406")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-consult-projectile")
|
||||
(version (git-version "0.7" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/OlMon/consult-projectile")
|
||||
(commit "400439c56d17bca7888f7d143d8a11f84900a406")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1abd2dw3zpiln9pd7l3j78wl3lwapcmf1ilijv3vin9g0wqb7hmn"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-consult emacs-projectile))
|
||||
(home-page "https://gitlab.com/OlMon/consult-projectile")
|
||||
(synopsis "Consult integration for projectile")
|
||||
(description
|
||||
"This package provides a multiview for displaying open buffers, files and
|
||||
directories accociated with a project. When no project is open in the current
|
||||
buffer display a list of known project and select a file from the selected
|
||||
project. Additionally seperate single source function are available.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-context-transient
|
||||
(package
|
||||
(name "emacs-context-transient")
|
||||
|
|
Reference in New Issue