aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-01-22 00:08:37 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-01-22 00:12:02 +0000
commit70d444355ee68b99dbe38c655668a16199e40e85 (patch)
tree85b7b4014739a32bdfe2ed7078d2c12fd137efaa /Emacs/.config/emacs
parent44fd0ae785a61752cffa0ad2d5c1e675a45682fc (diff)
downloaddotfiles-70d444355ee68b99dbe38c655668a16199e40e85.tar.gz
dotfiles-70d444355ee68b99dbe38c655668a16199e40e85.tar.bz2
dotfiles-70d444355ee68b99dbe38c655668a16199e40e85.zip
Add dired-rsync-modeline-status to mode-line for dired mode buffers
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r--Emacs/.config/emacs/config.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 9b31f91..1ce6ae7 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -918,6 +918,12 @@ of the evil state capitalised"
""))
))
mode-line-misc-info ;; Any other information
+ (:eval
+ (when (and (eq major-mode 'dired-mode)
+ (bound-and-true-p dired-rsync-modeline-status)
+ (mode-line-window-selected-p))
+ (concat " "
+ dired-rsync-modeline-status)))
(:eval ;; Compilation mode errors
(if (eq major-mode 'compilation-mode)
compilation-mode-line-errors))