diff options
| author | Maximilian Nickel <mnick@mit.edu> | 2019-10-06 22:58:00 -0400 |
|---|---|---|
| committer | James N <james@jojojames.com> | 2019-10-06 21:11:51 -0700 |
| commit | 4ef326ea87da264e2aaf4e1a72a5f8e3fa7090e9 (patch) | |
| tree | cc54554add3c4d73982fcecd1bb1aff804f7e778 | |
| parent | 1cc109122e32f550e3f5aae621339ea64b261a09 (diff) | |
Fix notmuch-search-toggle-flagged
Simple one line fix that prevented notmuch-search-toggle-flagged to work
| -rw-r--r-- | evil-collection-notmuch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-collection-notmuch.el b/evil-collection-notmuch.el index 96738c3..9880a23 100644 --- a/evil-collection-notmuch.el +++ b/evil-collection-notmuch.el @@ -94,7 +94,7 @@ (defun evil-collection-notmuch-search-toggle-flagged () "Toggle flagged tag for message." (interactive) - (evil-collection-notmuch-toggle-tag "flagged" "tree" 'notmuch-search-next-thread)) + (evil-collection-notmuch-toggle-tag "flagged" "search" 'notmuch-search-next-thread)) (defun evil-collection-notmuch-hello-ret () (interactive) |
