branch: externals/ssh-deploy
commit dbd8608551bc9e05280415b7b3937b1a151c7718
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Improved documentation
---
README.md | 4 ++--
ssh-deploy.el | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 74032a6..5245ceb 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@ Set your user and group as owner and file permissions to
`700`. Emacs should now
(global-set-key (kbd "C-c C-z d") (lambda()
(interactive)(ssh-deploy-download-handler) ))
(global-set-key (kbd "C-c C-z x") (lambda()
(interactive)(ssh-deploy-diff-handler) ))
(global-set-key (kbd "C-c C-z t") (lambda()
(interactive)(ssh-deploy-remote-terminal-handler) ))
- (global-set-key (kbd "C-c C-z r") (lambda()
(interactive)(ssh-deploy-rename-handler) ))
+ (global-set-key (kbd "C-c C-z R") (lambda()
(interactive)(ssh-deploy-rename-handler) ))
(global-set-key (kbd "C-c C-z e") (lambda()
(interactive)(ssh-deploy-remote-changes-handler) ))
(global-set-key (kbd "C-c C-z b") (lambda()
(interactive)(ssh-deploy-browse-remote-handler) )))
```
@@ -113,7 +113,7 @@ You can remove the `add-to-list` line if you installed via
`MELPA` repository.
* If you press `C-c C-z D` you will delete the current file or directory after
a confirmation on local and remote host.
* If you press `C-c C-z t` you will open a terminal with remote host via
`tramp-term`.
* If you press `C-c C-z b` you will browse current directory on remote host in
`dired-mode`.
-* If you press `C-c C-z r` you will rename current file or directory.
+* If you press `C-c C-z R` you will rename current file or directory.
* If you press `C-c C-z e` you will check for remote changes to the current
file.
The local path and local root is evaluated based on their **truename** so if
you use different symbolic local paths it shouldn't affect the deployment
procedure.
diff --git a/ssh-deploy.el b/ssh-deploy.el
index 52b2dbe..8372101 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -3,8 +3,8 @@
;; Author: Christian Johansson <github.com/cjohansson>
;; Maintainer: Christian Johansson <github.com/cjohansson>
;; Created: 5 Jul 2016
-;; Modified: 11 Jul 2017
-;; Version: 1.58
+;; Modified: 25 Jul 2017
+;; Version: 1.59
;; Keywords: tools, convenience
;; URL: https://github.com/cjohansson/emacs-ssh-deploy
@@ -32,7 +32,7 @@
;; `ssh-deploy' enables automatic deploys on explicit-save, manual uploads,
renaming,
;; deleting, downloads, file differences, remote terminals, detection of
remote changes and remote directory browsing via TRAMP.
;;
-;; To do this it progressively uses `tramp', `tramp-term', `ediff' and `async'.
+;; To do this it progressively uses `tramp-term' and `async'.
;; By setting the variables (globally or per directory):
;; `ssh-deploy-root-local',`ssh-deploy-root-remote',
`ssh-deploy-on-explicit-save'
;; you can setup a directory for `SSH' or `FTP' deployment.