From 80ac0c0a7e557ac510ce81606be99194df40a1c7 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sat, 23 Jul 2022 13:44:57 +0800 Subject: [PATCH] gnu: Add emacs-vundo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/emacs-xyz.scm (emacs-vundo): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c3f2fdeb12..3c1d322db3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -115,6 +115,7 @@ ;;; Copyright © 2022 Thomas Albers Raviola ;;; Copyright © 2022 Haider Mirza ;;; Copyright © 2022 Jose G Perez Taveras +;;; Copyright © 2022 Hilton Chain ;;; ;;; This file is part of GNU Guix. ;;; @@ -31946,3 +31947,23 @@ (define-public emacs-bitbake-modes be useful when working with the bitbake files in Yocto and OpenEmbedded projects.") (license license:gpl3+))) + +(define-public emacs-vundo + (package + (name "emacs-vundo") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/vundo-" + version ".tar")) + (sha256 + (base32 + "032aqcqq2xhh12qcpp8p3qldv0r9cnqr2y11jk1m5cvgal1cbb68")))) + (build-system emacs-build-system) + (home-page "https://github.com/casouri/vundo") + (synopsis "Visualize the undo tree") + (description + "Vundo (visual undo) displays the undo history as a tree and lets you move in the +tree to go back to previous buffer states. To use vundo, type @kbd{M-x vundo RET} in +the buffer you want to undo. An undo tree buffer should pop up.") + (license license:gpl3+)))