summary refs log tree commit diff stats
path: root/lisp/+modeline.el
diff options
context:
space:
mode:
authorCase Duckworth2021-12-26 13:05:05 -0600
committerCase Duckworth2021-12-26 13:05:05 -0600
commitd76af894cb0a53b08b2e35393f1cf85563344882 (patch)
treeefb3c44a193721b26d9c780c27ea487c239b4265 /lisp/+modeline.el
parentAdd reading-mode (diff)
downloademacs-d76af894cb0a53b08b2e35393f1cf85563344882.tar.gz
emacs-d76af894cb0a53b08b2e35393f1cf85563344882.zip
Fix random issues
Diffstat (limited to 'lisp/+modeline.el')
-rw-r--r--lisp/+modeline.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/+modeline.el b/lisp/+modeline.el index 47299ec..855ff50 100644 --- a/lisp/+modeline.el +++ b/lisp/+modeline.el
@@ -19,12 +19,12 @@
19 19
20(defun +modeline-buffer-name () ; gonsie 20(defun +modeline-buffer-name () ; gonsie
21 "Display the buffer name." 21 "Display the buffer name."
22 (propertize 22 (concat " " (propertize
23 (+string-align (buffer-name) 20 :before " " :ellipsis "~ ") 23 (+string-align (buffer-name) 20 :before "" :ellipsis "~ ")
24 'face 'bold 24 'face 'bold
25 'help-echo (or (buffer-file-name) 25 'help-echo (or (buffer-file-name)
26 (buffer-name)) 26 (buffer-name))
27 'mouse-face 'mode-line-highlight)) 27 'mouse-face 'mode-line-highlight)))
28 28
29(defcustom +modeline-minions-icon "&" 29(defcustom +modeline-minions-icon "&"
30 "The \"icon\" for `+modeline-minions' button." 30 "The \"icon\" for `+modeline-minions' button."