wangp / bower

A curses terminal client for the Notmuch email system
Other
119 stars 11 forks source link

boolean AND search #104

Closed jgarte closed 2 years ago

jgarte commented 2 years ago
  1. How can I search for an email for two pieces of text?

I'd like to search for "important" and "Job" in the body of the email, for example.

  1. How can I learn how to search for this type of information in the future?

Should I be reading the notmuch man pages mostly?

wangp commented 2 years ago

Yes man notmuch-search-terms.

Your example should be body:(important job). However, that's currently preprocessed to body: ( important job ) which isn't the same. I'll need to fix that.

jgarte commented 2 years ago

However, that's currently preprocessed to body: ( important job ) which isn't the same. I'll need to fix that.

Thanks for the help and advice!

Should we open a separate issue for that or change the title of this issue?

wangp commented 2 years ago

I've fixed it on the search-term-parser branch.