Ver a proveniência

Add remove

master
10sr há 5 anos
ascendente
cometimento
b31dd6e404
Assinados por: 10sr ID da chave GPG: 7BEC428194130EB2
1 ficheiros alterados com 15 adições e 0 eliminações
  1. +15
    -0
      emacs.el

+ 15
- 0
emacs.el Ver ficheiro

@@ -2203,6 +2203,21 @@ initializing."
(apply 'git-worktree--call-process args))
(revert-buffer)))

(defun git-worktree-mode-remove ()
"Remove worktree at point."
(interactive)
(let* ((id (tabulated-list-get-id))
(path (plist-get id :worktree)))
(cl-assert path nil "No worktree info at point")
(cl-assert (file-directory-p path) t "Directory not found")
(when (yes-or-no-p (format "Remove workking directory \"%s\": "
path))
(with-temp-buffer
(git-worktree--call-process "worktree"
"remove"
path))
(revert-buffer))))

(defvar git-worktree-mode-map
(let ((map (make-sparse-keymap)))
(suppress-keymap map)


Carregando…
Cancelar
Guardar