branch: elpa/helm
commit ca2ebcc7317f9fd9c3435fe68053ad206dc47d46
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Add a message when toggling truncate lines
---
helm-core.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/helm-core.el b/helm-core.el
index f552ba105b..654db246c2 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -7638,7 +7638,9 @@ help."
(with-helm-buffer
(setq truncate-lines (not truncate-lines))
(when (helm-get-previous-header-pos)
- (helm-update (regexp-quote (helm-get-selection nil t)))))))
+ (helm-update (regexp-quote (helm-get-selection nil t))))
+ (message "%sisplaying continuation lines"
+ (if truncate-lines "Not D" "D")))))
(put 'helm-toggle-truncate-line 'helm-only t)