emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] feature/gnus-select 9fabadf 179/218: Add new command vc-gi


From: Andrew G Cohen
Subject: [Emacs-diffs] feature/gnus-select 9fabadf 179/218: Add new command vc-git-stash-delete
Date: Fri, 14 Dec 2018 03:35:38 -0500 (EST)

branch: feature/gnus-select
commit 9fabadf800852b79826732265a03921e4a0a85fb
Author: Charles A. Roelli <address@hidden>
Commit: Andrew G Cohen <address@hidden>

    Add new command vc-git-stash-delete
    
    * lisp/vc/vc-git.el (vc-git-stash-delete): New command, in line with
    vc-git-stash-delete-at-point.
    (vc-git-extra-menu-map): Add menu entry.
---
 lisp/vc/vc-git.el | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index bf1b050..88052d7 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -1388,6 +1388,9 @@ This requires git 1.8.4 or later, for the \"-L\" option 
of \"git log\"."
     (define-key map [git-grep]
       '(menu-item "Git grep..." vc-git-grep
                  :help "Run the `git grep' command"))
+    (define-key map [git-ds]
+      '(menu-item "Delete Stash..." vc-git-stash-delete
+                  :help "Delete a stash"))
     (define-key map [git-sn]
       '(menu-item "Stash a Snapshot" vc-git-stash-snapshot
                  :help "Stash the current state of the tree and keep the 
current state"))
@@ -1518,6 +1521,12 @@ This command shares argument histories with \\[rgrep] 
and \\[grep]."
   (vc-git-command "*vc-git-stash*" 0 nil "stash" "pop" "-q" name)
   (vc-resynch-buffer (vc-git-root default-directory) t t))
 
+(defun vc-git-stash-delete (name)
+  "Delete stash NAME."
+  (interactive (list (vc-git-stash-read "Delete stash: ")))
+  (vc-git-command "*vc-git-stash*" 0 nil "stash" "drop" "-q" name)
+  (vc-resynch-buffer (vc-git-root default-directory) t t))
+
 (defun vc-git-stash-snapshot ()
   "Create a stash with the current tree state."
   (interactive)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]