doomemacs/modules/tools/upload/autoload.el

35 lines
617 B
EmacsLisp
Raw Normal View History

2017-02-20 07:54:32 +08:00
;;; extra/upload/autoload.el
;;;###autoload
(defun +upload/local (&optional force-p)
"TODO"
(interactive)
(if force-p
(ssh-deploy-upload-handler-forced)
(ssh-deploy-upload-handler)))
;;;###autoload
(defun +upload/remote-download ()
"TODO"
(interactive)
(ssh-deploy-download-handler))
;;;###autoload
(defun +upload/diff ()
"TODO"
(interactive)
(ssh-deploy-diff-handler))
;;;###autoload
(defun +upload/browse ()
"TODO"
(interactive)
(ssh-deploy-browse-remove-handler))
;;;###autoload
(defun +upload/check-remote ()
"TODO"
(interactive)
(ssh-deploy-remote-changes-handler))