I recently stumbled upon:
|
(defun mini-echo-show-divider (&optional hide) |
|
"Show window divider when enable mini echo. |
|
If optional arg HIDE is non-nil, disable the mode instead." |
|
(if hide |
|
(window-divider-mode -1) |
|
(pcase-let ((`(,window-divider-default-places |
|
,window-divider-default-right-width |
|
,window-divider-default-bottom-width) |
|
mini-echo-window-divider-args)) |
|
(window-divider-mode 1)))) |
and thought I should ask, is there a chance that this can become an optional change where the user can choose to enable/disable the presence of window-dividers in their config instead of hard-coding it to show the window dividers?
Kind regards!
I recently stumbled upon:
mini-echo.el/mini-echo.el
Lines 280 to 289 in a604f1c
Kind regards!