diff options
| -rw-r--r-- | notmuch.org | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/notmuch.org b/notmuch.org index cac76cb..467b915 100644 --- a/notmuch.org +++ b/notmuch.org @@ -123,6 +123,7 @@          ,(jao-notmuch--q "jao" "today" "tj"                           '("tag:jao" "date:24h.."                             "not tag:\"/(feeds|spam|local)/\"")) +        ,(jao-notmuch--q "feeds" "today" "tf" '("tag:feeds" "date:24h.."))          ,(jao-notmuch--q "bml" "flagged" "rb" '("tag:flagged" "tag:bigml"))          ,(jao-notmuch--q "bml" "todo" "btt" '("tag:todo" "tag:bigml"))          ,(jao-notmuch--q "jao" "flagged" "rj" '("tag:flagged" "not tag:bigml")) @@ -193,7 +194,7 @@        :init        :custom        ((notmuch-address-use-company nil) -       (notmuch-draft-folder "jao.drafts") +       (notmuch-draft-folder "drafts")         (notmuch-draft-quoted-tags '("part"))         (notmuch-address-internal-completion '(received nil))         (notmuch-fcc-dirs @@ -248,7 +249,10 @@      (defun jao-notmuch-refresh-agenda ()        (interactive)        (save-window-excursion (org-agenda-list)) -      (with-current-buffer "*Calendar*" (calendar-goto-today))) +      (let ((b (current-buffer))) +        (pop-to-buffer "*Calendar*") +        (calendar-goto-today) +        (pop-to-buffer b)))      (defun jao-notmuch-hello-first ()        (interactive) | 
