tools/upload: remove autoload library (unnecessary)
This commit is contained in:
parent
12a938d888
commit
3101d8a17f
1 changed files with 0 additions and 33 deletions
|
@ -1,33 +0,0 @@
|
||||||
;;; tools/upload/autoload.el -*- lexical-binding: t; -*-
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defun +upload/put-file (&optional force-p)
|
|
||||||
"Upload the current buffer's file to the configured remote."
|
|
||||||
(interactive "P")
|
|
||||||
(if force-p
|
|
||||||
(ssh-deploy-upload-handler-forced)
|
|
||||||
(ssh-deploy-upload-handler)))
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defun +upload/get-file ()
|
|
||||||
"Download the current buffer's file from the configured remote."
|
|
||||||
(interactive)
|
|
||||||
(ssh-deploy-download-handler))
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defun +upload/diff-file ()
|
|
||||||
"Open a diff of the local file against the remote."
|
|
||||||
(interactive)
|
|
||||||
(ssh-deploy-diff-handler))
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defun +upload/browse ()
|
|
||||||
"Browse the remote directory mapped to this file's directory."
|
|
||||||
(interactive)
|
|
||||||
(ssh-deploy-browse-remote-handler))
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defun +upload/check-remote ()
|
|
||||||
"Check if local file exists or if the remote file has changed."
|
|
||||||
(interactive)
|
|
||||||
(ssh-deploy-remote-changes-handler))
|
|
Loading…
Add table
Add a link
Reference in a new issue