Explorar el Código

Implement git-worktree-mode-go

master
10sr hace 6 años
padre
commit
3e6fa40ef5
Firmado por: 10sr ID de clave GPG: 7BEC428194130EB2
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el Ver fichero

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


Cargando…
Cancelar
Guardar