mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add emacs-loccur.
* gnu/packages/emacs-xyz.scm (emacs-loccur): New variable.
This commit is contained in:
parent
b6d9e266a7
commit
ddd6b70591
1 changed files with 25 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Alex Kost <alezost@gmail.com>
|
||||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016, 2017, 2018, 2019 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2016, 2017, 2018, 2019 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2015, 2016, 2018, 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
|
;;; Copyright © 2015, 2016, 2018, 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
|
||||||
;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
|
;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
|
||||||
|
@ -10681,6 +10681,30 @@ (define-public emacs-loc-changes
|
||||||
after buffer changes.")
|
after buffer changes.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-loccur
|
||||||
|
(let ((commit "01b7afa62589432a98171074abb8c5a1e089034a")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-loccur")
|
||||||
|
(version (git-version "1.2.5" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/fourier/loccur/")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1b1x1xsiwqzsiss1jc6w990v1vfvbn5d5w67yzmx59s9ldjmdqq2"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/fourier/loccur")
|
||||||
|
(synopsis "Perform an occur-like folding in current buffer")
|
||||||
|
(description
|
||||||
|
"Loccur is a tool to quickly navigate a file. It is a minor mode for
|
||||||
|
Emacs acting like occur but w/o creating a new window. It just hides all the
|
||||||
|
text excepting lines containing matches.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-realgud
|
(define-public emacs-realgud
|
||||||
(package
|
(package
|
||||||
(name "emacs-realgud")
|
(name "emacs-realgud")
|
||||||
|
|
Loading…
Reference in a new issue