summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2021-09-15 17:58:23 +0800
committerJSDurand <mmemmew@gmail.com>2021-09-15 17:58:23 +0800
commitc9999239c119970dcc07517dfe075444e5ead74b (patch)
tree16868a1242d9b4103ae5dd062079a3d5b95dc20f
parentd81469b7d7fd979236badafbdf0b04c6c876e3f1 (diff)
change the order of filter groups of bookmarks
-rw-r--r--bookmark-conf.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/bookmark-conf.el b/bookmark-conf.el
index fc95cb8..5604634 100644
--- a/bookmark-conf.el
+++ b/bookmark-conf.el
@@ -49,11 +49,11 @@
(setq
blist-filter-groups
(list
- (cons "Eshell" #'blist-eshell-p)
- (cons "EWW" #'blist-eww-p)
- (cons "Gnus" #'blist-gnus-p)
(cons "PDF" #'blist-pdf-p)
+ (cons "Eshell" #'blist-eshell-p)
(cons "ELisp" #'blist-elisp-p)
+ (cons "Gnus" #'blist-gnus-p)
+ (cons "EWW" #'blist-eww-p)
(cons "Info" #'blist-info-p)
(cons "Org" #'blist-org-p)
(cons "C" #'blist-c-p)