Commit graph

519 commits

Author SHA1 Message Date
Carl Worth
46f41d80b0 notmuch.el: Make magic space bar advance to next unread messages.
The magic of the space bar is all about unread messages, so there's no
reason for it to advance to messages that have already been read.

Similarly, we now remove any magic from (n)ext so that it simply
advances to the next message without marking anything read, (which
makes it symmetrical with (p)revious).
2009-11-04 11:27:21 -08:00
Carl Worth
88810b999a notmuch.el: Move to first unread message on notmuch-show.
This is important for when a new message is delivered to an existing
enormous thread.
2009-11-04 11:19:50 -08:00
Carl Worth
08d84ceeab notmuch.el: Make next-message move to end of buffer after last message.
We need an easier way to detect when we're done with the last message
so taking advantage of the end-of-buffer position helps here.
2009-11-04 11:03:07 -08:00
Carl Worth
c5672ca12a notmuch.el: Leave a blank line after last thread in search.
This allows for pleasant termination of the "show next thread" magic
in notmuch-show mode. Now, it will terminate and show the
notmuch-search results rather than continually displaying the last
thread over and over.
2009-11-04 11:02:40 -08:00
Carl Worth
3effd82ace notmuch.el: Move "show next thread" from magic-space-bar to archive-thread
If I explicitly hit the 'a' key before reading the whole thread, I
still want to advance to the next thread in my search.
2009-11-04 10:32:44 -08:00
Carl Worth
9a02b950a3 notmuch.el: More magic for magic space bar: Show next thread from search.
This is implemented by stashing away the parent notmuch-search buffer
into a variable within the notmuch-show buffer. Then, when magic space
bar triggers an archive of the current thread, it switches to the parent
search buffer and shows the next thread.
2009-11-04 10:25:04 -08:00
Carl Worth
daedd2442a notmuch.el: notmuch-search: Advance to next line before showing thread.
The idea here is that after viewing the thread, when we come back to
this buffer we'll be all ready to view the next thread.
2009-11-04 09:32:47 -08:00
Carl Worth
33fae33d82 notmuch.el: Make archive-thread more efficient for already archived messages.
The approach here is to move the optimization from mark-read to the
more general remove-tag. Namely, don't call out to a "notmuch tag"
command to remove a tag that's not there already.
2009-11-04 09:26:50 -08:00
Carl Worth
278ae86f64 notmuch.el: Make the magic spacebar archive a thread in the end.
Next all it needs to do is kill the buffer and show the next thread.
2009-11-04 09:21:09 -08:00
Carl Worth
aab9b5cf47 notmuch.el: Start implementing the magic space bar.
Currently this will either advance by screenfuls, or to the next
message if it's already within a screenful, and will mark each message
read as it is left.

It doesn't yet complete the magic by archiving the messages nor by
advancing to the next thread in the search.
2009-11-04 09:09:02 -08:00
Carl Worth
c8382b2f0e notmuch.el: Fix to hide citations in body of read messages.
Previously, unhinding a read message would still show all the citations
in that message without an explicit command to make them visible. Fix.
2009-11-04 08:50:44 -08:00
Carl Worth
446459a5ea notmuch.el: Redefine behavior of notmuch-show-previous-message
Now, if the user has manually moved point to somewhere within a
message, executing the previous-message command onece will rewind
point only to the beginning of the current message. Previously this
would go back to the previous message, (which the user can now do
easily and naturally by simply executing the command one more time).
2009-11-04 08:50:44 -08:00
Carl Worth
253c11b675 notmuch.el: Fix notmuch-snow-next-message when on the last message.
Before this just brought the current line to the top of the
window. Now it actually moves to the beginning of the current message.

This is built on a much more solid foundation now with a function to
move to the summary-line of the current message, and then moving from
there.
2009-11-04 08:43:14 -08:00
Carl Worth
fbf473220b notmuch.el: Add more complete documentation to the major modes.
These now provide a summary of the most useful features/bindings
as well as a complete printout of the relevant mode maps to show
all available keybindings.
2009-11-03 18:24:13 -08:00
Carl Worth
e0b830410a notmuch.el: Make archive-thread advance to next line.
This is the command in notmuch-search mode and it's cer convenient
for it to advance to the next line there. (It would be even more
convenient if it didn't also take forever, but as mentioned before
that's an issue we'll need to fix in Xapian.)
2009-11-03 17:18:04 -08:00
Carl Worth
c4ea149a9b notmuch.el: Add 't' binding to filter results to a specific tag.
This is a convenience function to avoid having to type "tag:" with
the (f)ilter command.
2009-11-03 17:01:07 -08:00
Carl Worth
50f260a1a3 notmuch.el: Add bindings for scrolling to notmuch-search mode.
We turn on the scroll-preserve-screen-position option which seems
like what's desired here, (though that's not what I normally use
when editing files---but I think scrolling through a list of email
threads is different).
2009-11-03 16:55:20 -08:00
Carl Worth
d47fc17263 Drop inapplicable copyright statements.
I had put these in here since I had originally planned to copy
liberally from the body of the implementation of 'compile in order
to get process output into a buffer. But once I found call-process
in the documentation of emacs, that was all I needed.

And all the code I've written since has been entirely my own with
just the help of emacs documentation.
2009-11-03 16:47:34 -08:00
Carl Worth
3f04059b33 notmuch-el: Fix implementation of show/hide-thread-ids.
I'm definitely more comfortable with the add-to-invisibility-spec
now than I was when I first wrote these functions, (which weren't
working at all).
2009-11-03 16:46:27 -08:00
Carl Worth
0bec4692b6 notmuch.el: Add command to (a)rchive a thread from notmuch-show mode.
This is our first race-free implementation of archive-thread! It
acts only on the messages explcitly contained in the buffer, not
on an entire thread ID, so it's safe in the face of new messages
have been delivered for this thread since the view was made.
2009-11-03 13:39:09 -08:00
Carl Worth
3dc1507d15 notmuch.el: Don't try to remove an "unread" tag that's not there.
This optimization wouldn't be necessary if we had a nice fast "notmuch
tag" command. But since it's currently fairly slow, (see Xapian defect
250: http://trac.xapian.org/ticket/250), we're willing to take some
extra care to avoid calling "notmuch tag" unnecessarily.
2009-11-03 13:38:05 -08:00
Carl Worth
aa34eb2a37 notmuch show: Remove custom "unread" hack, (printing tag in two locations).
I previously had a hack that special-cased the "unread" tag and
printed it on the same line as the message ID. But now that we are
printing all tags at the end of the one-line summary we don't need
this anymore. Get rid of it, and just read "unread" from the list of
tags just like any other tag.
2009-11-03 13:38:00 -08:00
Carl Worth
0ceef70efd notmuch.el: Add + and - bindings to add/remove tags from messages.
This is in notmuch-show mode rather than in notmuch-search mode,
(where we had + and - working already). This gives the same visual
feedback as in notmuch-search-mode, (the tags are manipulated first in
the database and then the list of tags in the buffer is updated).
2009-11-03 12:54:10 -08:00
Carl Worth
02aa1391be notmuch show: Print tags for each message.
This is in the one-line summary so should always be visible even
in our emacs client that's so eager to make things invisible.
2009-11-03 12:29:07 -08:00
Carl Worth
6be03c1761 notmuch.el: Preserve current thread when refreshing search results.
Otherwise, try to keep point in the same place, (such as when the
current thread has been archived away).
2009-11-03 11:54:34 -08:00
Carl Worth
2d507c9c6d notmuch.el: Add an '=' key to refresh the current view.
This will allow for updates when a separate process (say, a notmuch-
show buffer), has archived messages.
2009-11-03 11:47:48 -08:00
Carl Worth
e96e34c3f1 notmuch.el: Mark messages read when the (n)ext keybinding is pressed
Of course, technically, we're removing the "unread" tag, but you
get the idea. :-)
2009-11-03 11:42:04 -08:00
Carl Worth
3998f3a61c notmuch.el: Hide citations and signatures.
The user can make these visible again by pressing 'c' or 's',
(though we'd like to move to direct manipulation instead soon).
2009-11-03 11:14:52 -08:00
Carl Worth
9c6a010674 Hide bodies of message that have already been read.
Also hide all markers.

From here, all we really need for legibility is the following:

  * Hide away citations and signatures

  * Call out the one-line summary some way, (larger font size?)

  * Add nesting for replies
2009-11-03 10:32:42 -08:00
Carl Worth
f2a4c3e565 notmuch.el: Hide email headers by default.
The display of the header can be toggled with the 'h' key.
2009-11-02 22:24:35 -08:00
Carl Worth
a81849b5e2 notmuch show: Switch to control character to mark sections of output
We were previously using things like "%message{" which were not
guaranteed to never appear in an email message. Using a control
character (^L or '\f' instead of '%') gives us better assurance that
our delimiter doesn't show up in an original email message.

This still isn't entirely safe since we're decoding encoded text in
the body of the email message so almost all bets are off really.
2009-11-02 21:13:19 -08:00
Carl Worth
40382ed98c notmuch.el: Make 'n' and 'p' bring the current message to the top.
This is much more convenient for reading the messages, and happens
to match the behavior of sup.
2009-11-02 20:47:11 -08:00
Carl Worth
8debf74e82 notmuch.el: Add (n)ext and (p)revious bindings to notmuch-show mode.
Almost starting to get usable now. Still need to make it mark messages
as they are read, (by removing the unread tag), and selectively hiding
the full header.
2009-11-02 18:45:17 -08:00
Carl Worth
4f974ac600 TODO: Add an idea from talking with keithp on the train.
I mentioned the read-only directory optimization to Keith, and he
liked it but wanted to be able to configure it to be fully automated.
2009-11-02 18:44:34 -08:00
Carl Worth
07b2ef26de notmuch.el: Add '<' and '>' bindings to goto first/last thread.
Also, take care to remove a final blank line to avoid the point
going beyond the last thread in the buffer.
2009-11-02 18:23:06 -08:00
Carl Worth
e5faf380d1 TODO: Organize tasks based on emacs interface, command-line tool, or library.
There are conceptually three different projects here, so it helps
to keep the tasks for each separated.
2009-11-02 18:02:38 -08:00
Carl Worth
df76a704b5 notmuch.el: Add commands to (s)earch globally, and (f)ilter a search
Also add 'q' and 'x' keybindings to kill the current buffer.
2009-11-02 17:56:18 -08:00
Carl Worth
e1f95213ae Tweak relative dates to be close to the same length.
Most all of the returned strings will now fill most of a 12-character
string, (depending on the length of the month).
2009-11-02 16:18:28 -08:00
Carl Worth
dac7e1d4b1 Remove notmuch_message_get_header_size and notmuch_message_get_all_headers
The notmuch.c main program now uses GMime directly rather than using
these functions, and I'd rather not export any functions unless we
have good evidence that the functions are necessary.
2009-11-02 16:08:24 -08:00
Carl Worth
ab2d904e06 notmuch.el: Hide thread IDs in notmuch-search mode.
One more baby step toward something that's pleasant to use.
2009-11-02 16:02:32 -08:00
Carl Worth
d4c4318fb9 notmuch.el: Implement visual feedback for add/remove tags.
There's no undo still, but at least you can see what you are doing
now.
2009-11-02 15:48:21 -08:00
Carl Worth
fa226a7a10 Drop date.c file, (use identical function from GMime instead).
We had originally copied this function in at a time when notmuch
wasn't actually depending on the GMime library. Now that it does,
we might as well call the function that exists there rather
than having a private copy of it.
2009-11-02 14:36:33 -08:00
Carl Worth
8ff934803c notmuch show: Don't print non-text MIME parts.
Additionally, print a part number for each MIME part so that the
client could (conceivably) ask for the contents of a specific
part by part number.
2009-11-02 14:33:15 -08:00
Carl Worth
6a7f4df6f7 Fix to decode header values, (primarily subject).
Use GMime function to decode message-header values according to
RFC 2047.
2009-11-02 14:32:20 -08:00
Carl Worth
d6615b554e Print "part" markers for each MIME part (with Content-type).
This can allow for the client to hide undesired MIME parts
such as text/html.
2009-11-02 13:41:04 -08:00
Carl Worth
ab317ca474 notmuch show: Use GMime to decode messages.
We now actually get text content rather than blocks of BASE64, etc.
2009-11-02 13:19:39 -08:00
Carl Worth
88ab96dc40 TODO: Add several items.
These are the things that are actively preventing me from being able
to use notmuch as an email-reading client.
2009-11-02 13:18:58 -08:00
Carl Worth
1b10c32a52 Add an INSTALL file.
The README file was already referring to this, so we actually add it
now.
2009-11-02 09:25:04 -08:00
Carl Worth
ddb4713b4b Add a simple configure script.
This is *not* based on autoconf. In fact, this doesn't actually
configure anything, (one can compile notmuch directly with just
"make" without running configure if the dependencies are all
satisfied).

The only thing that this configure script does is to check for the
presence of the various dependencies and provide some guidance to
the user if they are not all available.
2009-11-02 09:11:37 -08:00
Carl Worth
f6183a92b5 Makefile: Rewrite to use NOTMUCH rather than MY in variable names.
I was about to refer to these names in some documentation, so I
wanted a slightly better name for them.
2009-11-02 07:18:49 -08:00