summaryrefslogtreecommitdiff
path: root/notmuch.el
Commit message (Collapse)AuthorAge
* notmuch.el: Add commands to add tag, remove tag, and archive (== remove ↵Carl Worth2009-10-31
| | | | | | | | | | | | | | inbox tag) These have keybindings of '+', '-', and 'a'. The bug they have so far is lack of visual feedback for their effect, and lack of undo. (Also the fact that adding or removing a single tag for a thread takes way too long--but that's as a Xapian issue as discussed here: replace_document should make minimal changes to database file http://trac.xapian.org/ticket/250 )
* notmuch.el: Add final '*' to generated buffer names.Carl Worth2009-10-31
| | | | Just looks a little neater that way.
* notmuch.el: Enter now calls "notmuch show" on the current threadCarl Worth2009-10-31
| | | | | It's remarkable how little code we need for a very functional GUI here. I think we're doing something right.
* notmuch.el: Start fleshing out notmuch-search-mode with a custom keymapCarl Worth2009-10-31
| | | | | All we have here so far is 'n' and 'p' for going to next and previous lines respectively.
* notmuch.el: Switch from start-process to call-processCarl Worth2009-10-31
| | | | | | | We now get the point staying right at the top where we want it. We also don't get any extraneous noise about "Process notmuch completed" or anything like that. Just the output in a read-only buffer.
* notmuch.el: Switch from compilation-start to start-processCarl Worth2009-10-30
| | | | | | Compilation mode does a bunch of things that we don't want. Instead of trying to tear it down to what we want, let's start at the other end and build up only things that we really want.
* notmuch.el: Add notmuch-search command as well as notmuchCarl Worth2009-10-30
| | | | This allows for entering a query string interactively.
* notmuch.el: Copy copyright information from compilation.elCarl Worth2009-10-30
| | | | | | I'm using that file as my reference here, so I'm likely to end up copying some code here or there. Might as well be safe and just copy the copyright statement.
* notmuch.el: Rename from notmuch-mode.el to notmuch.elCarl Worth2009-10-30
Also add the copyright and licensing blurb.