mirror of
https://github.com/iwata/git-now.git
synced 2026-09-10 15:36:22 -04:00
11 lines
220 B
EmacsLisp
11 lines
220 B
EmacsLisp
;;; git-now.el - Call "git now" command
|
|
|
|
(provide 'git-now)
|
|
|
|
(defun now ()
|
|
(interactive)
|
|
(call-process "git" nil "*git now*" nil "now")
|
|
(pop-to-buffer "*git now*" t nil)
|
|
(other-window -1)
|
|
(message "git now!"))
|