Blacklist additional non-source-code modes

I don't want vterm buffers or magit buffers showing up when I cycle throw
buffers.
This commit is contained in:
William Carroll 2020-02-02 13:19:54 +00:00
parent 5521db80b1
commit 2e76601f70

View file

@ -42,9 +42,11 @@
(defconst buffer/source-code-blacklist (defconst buffer/source-code-blacklist
(set/new 'dired-mode (set/new 'dired-mode
'erc-mode 'erc-mode
'vterm-mode
'magit-status-mode 'magit-status-mode
'magit-process-mode 'magit-process-mode
'magit-log-mode 'magit-log-mode
'magit-diff-mode
'org-mode 'org-mode
'fundamental-mode) 'fundamental-mode)
"A blacklist of major-modes to ignore for listing source code buffers.") "A blacklist of major-modes to ignore for listing source code buffers.")