diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-04-13 01:00:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-14 17:42:09 +0200 |
commit | ccf220f363fa7b59719277e4a471993a74428628 (patch) | |
tree | 97f95ff75c8e4acb8a86dfe1442d413837e03322 /gnu | |
parent | 884cc871641a9618a8155905b279dba6756ac4d8 (diff) | |
download | patches-ccf220f363fa7b59719277e4a471993a74428628.tar patches-ccf220f363fa7b59719277e4a471993a74428628.tar.gz |
gnu: Add emacs-eshell-up.
* gnu/packages/emacs-xyz.scm (emacs-eshell-up): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index fb793fa918..7919439145 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -14476,6 +14476,30 @@ provides a minor mode that autoformats the buffer upon saving.") functions for Fish shell scripts.") (license license:gpl3+))) +(define-public emacs-eshell-up + (let ((commit "9c100bae5c3020e8d9307e4332d3b64e7dc28519") + (version "0.0.3") + (revision "12")) + (package + (name "emacs-eshell-up") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/peterwvj/eshell-up") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "00zdbcncjabgj5mp47l1chymx5na18v2g4kj730dgmj3rnl3iz2q")))) + (build-system emacs-build-system) + (home-page "https://github.com/peterwvj/eshell-up") + (synopsis "Quickly go to a parent directory in @code{Eshell}") + (description "This package provides quick navigation to a specific +parent directory using @code{Eshell}.") + (license license:gpl3+)))) + (define-public emacs-semantic-refactor ;; The last release, 0.5, was made on 2015-07-26 and there have been 47 ;; commits since then. |