diff options
Diffstat (limited to 'lisp/+modeline.el')
-rw-r--r-- | lisp/+modeline.el | 12 |
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." |