emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ssh-deploy cc91b56 132/133: Updated README and version


From: Stefan Monnier
Subject: [elpa] externals/ssh-deploy cc91b56 132/133: Updated README and version
Date: Sat, 27 Mar 2021 14:48:59 -0400 (EDT)

branch: externals/ssh-deploy
commit cc91b56a7f07ae63fcf78a040001491d040ec9ba
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>

    Updated README and version
---
 README.md     | 11 +++++++++++
 ssh-deploy.el |  4 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 89233e3..b9fb515 100644
--- a/README.md
+++ b/README.md
@@ -260,6 +260,17 @@ Ange-FTP defaults to `~/.netrc` so you need to add this to 
your init script:
 (setq ange-ftp-netrc-filename "~/.authinfo.gpg")
 ```
 
+## DirectoryVariables not read in evil-mode / doom-emacs / spacemacs et. al
+
+Thanks `shrubbroom` for poiting out that `evil-mode` has a upstream bug were 
the function `hack-local-variables` are not executed as expected and this 
results in that DirectoryVariables are not set, to fix this you can add this to 
your init-script:
+
+``` elisp
+(advice-add #'turn-on-evil-mode :before
+              (lambda (&optional args)
+                (when (eq major-mode 'fundamental-mode)
+                  (hack-local-variables))))
+```
+
 ## Tests
 
 Run `make test` from plug-in folder to run tests
diff --git a/ssh-deploy.el b/ssh-deploy.el
index affe4f3..a299239 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -5,8 +5,8 @@
 ;; Author: Christian Johansson <christian@cvj.se>
 ;; Maintainer: Christian Johansson <christian@cvj.se>
 ;; Created: 5 Jul 2016
-;; Modified: 6 Mar 2020
-;; Version: 3.1.11
+;; Modified: 10 Oct 2020
+;; Version: 3.1.12
 ;; Keywords: tools, convenience
 ;; URL: https://github.com/cjohansson/emacs-ssh-deploy
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]