diff options
author | Case Duckworth | 2021-08-07 15:08:53 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-07 15:08:53 -0500 |
commit | 3c7f8650359ce129ab6019f7db7d9d7723428ff7 (patch) | |
tree | 85fc8c9ecebdf6f93d239dab42676b56f7641470 | |
parent | Turn off ERC modeline when clocked in (diff) | |
download | emacs-3c7f8650359ce129ab6019f7db7d9d7723428ff7.tar.gz emacs-3c7f8650359ce129ab6019f7db7d9d7723428ff7.zip |
Add space to word-count modeline
Honestly I should make the format a customizable variable.
-rw-r--r-- | lisp/acdw-modeline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/acdw-modeline.el b/lisp/acdw-modeline.el index db20b5a..6131484 100644 --- a/lisp/acdw-modeline.el +++ b/lisp/acdw-modeline.el | |||
@@ -118,6 +118,6 @@ Uses `acdw-modeline/word-count-modes' to determine which function to use." | |||
118 | #'count-words)) | 118 | #'count-words)) |
119 | (min (if (region-active-p) (region-beginning) (point-min))) | 119 | (min (if (region-active-p) (region-beginning) (point-min))) |
120 | (max (if (region-active-p) (region-end) (point-max)))) | 120 | (max (if (region-active-p) (region-end) (point-max)))) |
121 | (format "%dW" (funcall fn min max))))) | 121 | (format " %dW" (funcall fn min max))))) |
122 | 122 | ||
123 | (provide 'acdw-modeline) | 123 | (provide 'acdw-modeline) |