diff options
author | Amin Bandali <bandali@gnu.org> | 2019-01-20 17:15:14 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-01-20 17:16:50 -0500 |
commit | f7830858bd3b07a1631ee289db0023ac8c68c537 (patch) | |
tree | c11b5bcfd1e023186edbffd46253fbb34e8656bf | |
parent | 0f7a3669cde14cdcb6f6f37dd8f64adec9669f6b (diff) | |
download | configs-f7830858bd3b07a1631ee289db0023ac8c68c537.tar.gz configs-f7830858bd3b07a1631ee289db0023ac8c68c537.tar.xz configs-f7830858bd3b07a1631ee289db0023ac8c68c537.zip |
[emacs/gnus] fix and improve gnus-permanently-visible-groups regexp
typo fix: remove extraneous opening paren
improve: rule out partial folder matches for the two cases
-rw-r--r-- | init.org | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2372,7 +2372,7 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. (use-feature gnus-group :config - (setq gnus-permanently-visible-groups "\\((INBOX\\|gnu$\\)")) + (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)")) (use-feature mm-decode :config |