diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2018-04-13 16:28:09 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-04-22 23:50:49 +0200 |
commit | c51e592d6c5d68ba6e21c925cfed9ed1fe06ef3d (patch) | |
tree | 87f9b29a2848bfb301c50775e29091537609b9fd | |
parent | 479c0e3f60f54e3c3a02f71efeb49119e20d2a96 (diff) | |
download | patches-c51e592d6c5d68ba6e21c925cfed9ed1fe06ef3d.tar patches-c51e592d6c5d68ba6e21c925cfed9ed1fe06ef3d.tar.gz |
gnu: Add emacs-elisp-slime-nav.
* gnu/packages/emacs.scm (emacs-elisp-slime-nav): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b2fd069d3a..3ddca5be4a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7932,3 +7932,25 @@ name and password. To skip it press a @key{Return} key. You could get a Epkg package list by invoking @code{epkg-list-packages} in Emacs.") (license license:gpl3+)))) + +(define-public emacs-elisp-slime-nav + (package + (name "emacs-elisp-slime-nav") + (version "0.9") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2")))) + (build-system emacs-build-system) + (home-page "https://github.com/purcell/elisp-slime-nav") + (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME") + (description + "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation +in @code{emacs-lisp-mode}, together with an elisp equivalent of +@code{slime-describe-symbol}.") + (license license:gpl3+))) |