branch: externals/ssh-deploy
commit b13ba60ea175798cfd1395ab833082789724073d
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Removed idle mode-line status to avoid cluttering interface
---
ssh-deploy.el | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/ssh-deploy.el b/ssh-deploy.el
index 0424267..3bac382 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -334,9 +334,6 @@
(let ((status-text ""))
(cond
- ((= status ssh-deploy--status-idle)
- (setq status-text "idle"))
-
((= status ssh-deploy--status-downloading)
(setq status-text "dl.."))
@@ -355,6 +352,7 @@
(t (setq status-text ""))
)
+
(make-local-variable 'ssh-deploy--mode-line-status-text)
(setq ssh-deploy--mode-line-status-text
(ssh-deploy--mode-line-status-text-format status-text))
;; (message "SSH Deploy - Updated status text to: '%s' from: %d"
ssh-deploy--mode-line-status-text status)