Disable mode line in dired sidebar

This commit is contained in:
Jeremy Dormitzer 2020-05-29 14:35:12 -04:00
parent 4d8ac2e5b6
commit 887252589f

View File

@ -2464,7 +2464,8 @@ UI-related keybindings:
(advice-add 'centaur-tabs-hide-tab :around
(lambda (oldfn buf &rest args)
(if (with-current-buffer buf
(eq major-mode 'vuiet-mode))
(or (eq major-mode 'vuiet-mode)
(eq major-mode 'dired-sidebar-mode)))
t
(apply oldfn buf args))))