updated filter groups

We changed the filter groups labels to start with a capital to keep
the style consistent with the Default group. We also added a new Man
filter group and a condition in the "Misc" group to exclude man pages.
master
John Turner 2 years ago
parent 8a028d54dd
commit 602769dc8c
No known key found for this signature in database
GPG Key ID: 422FE10CC41A94A2

@ -1,7 +1,9 @@
(setq ibuffer-saved-filter-groups (setq ibuffer-saved-filter-groups
'(("default" '(("default"
("misc" (name . "^\\*.*$")) ("Misc" (and (name . "^\\*.*$")
("dired" (mode . dired-mode))))) (not (mode . Man-mode))))
("Dired" (mode . dired-mode))
("Man" (mode . Man-mode)))))
(add-hook 'ibuffer-mode-hook (lambda () (ibuffer-switch-to-saved-filter-groups "default"))) (add-hook 'ibuffer-mode-hook (lambda () (ibuffer-switch-to-saved-filter-groups "default")))

Loading…
Cancel
Save