diff options
author | JSDurand <mmemmew@gmail.com> | 2021-09-15 17:58:23 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-09-15 17:58:23 +0800 |
commit | c9999239c119970dcc07517dfe075444e5ead74b (patch) | |
tree | 16868a1242d9b4103ae5dd062079a3d5b95dc20f /bookmark-conf.el | |
parent | d81469b7d7fd979236badafbdf0b04c6c876e3f1 (diff) |
change the order of filter groups of bookmarks
Diffstat (limited to 'bookmark-conf.el')
-rw-r--r-- | bookmark-conf.el | 6 |
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) |