From 3101d8a17f6430c392b3fadb5576d208529f5aaf Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 21 Feb 2018 17:09:45 -0500 Subject: [PATCH] tools/upload: remove autoload library (unnecessary) --- modules/tools/upload/autoload.el | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/tools/upload/autoload.el diff --git a/modules/tools/upload/autoload.el b/modules/tools/upload/autoload.el deleted file mode 100644 index a129c5d4e..000000000 --- a/modules/tools/upload/autoload.el +++ /dev/null @@ -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))