소스 검색

Add remove

master
10sr 6 년 전
부모
커밋
b31dd6e404
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +15
    -0
      emacs.el

+ 15
- 0
emacs.el 파일 보기

@@ -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)


불러오는 중...
취소
저장