Sfoglia il codice sorgente

Implement git-worktree-mode-go

master
10sr 6 anni fa
parent
commit
3e6fa40ef5
Firmato da: 10sr ID Chiave GPG: 7BEC428194130EB2
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el Vedi File

@@ -2232,6 +2232,13 @@ initializing."
(pop-to-buffer bf)))
(defalias 'git-worktree 'git-worktree-open)

(defun git-worktree-mode-go ()
"Go to worktree directory at point."
(interactive)
(let ((id (tabulated-list-get-id)))
(when id
(dired (plist-get id :worktree)))))

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


Caricamento…
Annulla
Salva