diff options
author | Amin Bandali <bandali@gnu.org> | 2018-10-20 14:53:45 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-10-20 14:53:45 -0400 |
commit | 9e756a57873bf465583aea1ff445f264d6f9f84e (patch) | |
tree | bfc2b8cf95f0d7e79e881f834e869256466d353b | |
parent | 1278d522a2b6776b619da3ee462f0b55193e3eb4 (diff) | |
download | configs-9e756a57873bf465583aea1ff445f264d6f9f84e.tar.gz configs-9e756a57873bf465583aea1ff445f264d6f9f84e.tar.xz configs-9e756a57873bf465583aea1ff445f264d6f9f84e.zip |
[emacs/ibuffer] change org filter from name-based to mode-based
Diffstat (limited to '')
-rw-r--r-- | etc/custom.el | 2 | ||||
-rw-r--r-- | init.org | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/custom.el b/etc/custom.el index 3868db1..e9965bf 100644 --- a/etc/custom.el +++ b/etc/custom.el @@ -25,7 +25,7 @@ ("dired" (mode . dired-mode)) ("org" - (name . "^.*org$")) + (mode . org-mode)) ("web" (or (mode . web-mode) @@ -907,7 +907,7 @@ There's no way I could top that, so I won't attempt to. (ibuffer-saved-filter-groups '(("default" ("dired" (mode . dired-mode)) - ("org" (name . "^.*org$")) + ("org" (mode . org-mode)) ("web" (or (mode . web-mode) |