branch: externals/ssh-deploy
commit e64a4544f7000c1212c1f3189cfe31e459a4e801
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Starting ssh-deploy-mode-line on init
---
ssh-deploy.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ssh-deploy.el b/ssh-deploy.el
index b2cf886..8b0eb75 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -1340,7 +1340,7 @@
;;; Mode Line
-;;;###autoload
+
(define-minor-mode ssh-deploy-line-mode
"Show SSH Deploy status in mode line"
:global t
@@ -1348,6 +1348,9 @@
(add-to-list 'global-mode-string 'ssh-deploy--mode-line-status-text t))
(ssh-deploy--mode-line-status-refresh)
+;; Start mode line by default
+(ssh-deploy-line-mode)
+
(provide 'ssh-deploy)
;;; ssh-deploy.el ends here