[email protected] writes:

> I'm trying to override the default mu4e bookmarks like so:
>
> #+BEGIN_SRC emacs-lisp
> (defvar mu4e-bookmarks 'nil)
> (add-to-list 'mu4e-bookmarks '("flag:unread AND NOT flag:trashed" "Unread 
> messages" ?u) t)
> (add-to-list 'mu4e-bookmarks '("date:today..now AND NOT flag:trashed" 
> "Today's messages" ?t) t)
> (add-to-list 'mu4e-bookmarks '("date:2d..now" "Last 2 days" ?2) t)
> #+END_SRC
>
> But the default "unread" and "today" remain at the top of the
> list. I'd like to override those to exclude, for example, the
> trash. How do I do this?
>
> Thanks,
>
>   -k.


Try 

#+BEGIN_SRC emacs-lisp
(setq '(("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
        ("date:today..now AND NOT flag:trashed" "Today's messages" ?t)
        ("date:2d..now" "Last 2 days" ?2)))
#+END_SRC

Regards, Olaf

-- 
You received this message because you are subscribed to the Google Groups 
"mu-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to