aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-17 20:52:09 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-17 20:58:30 -0800
commit333486572517d2e2084d66208de59085f21d8573 (patch)
tree97c3e7119958f9b15315087332c396204c133776 /lib
parent5dec429f457c5b387a43802a32ef3192592c425d (diff)
notmuch search: Change default search order to be newest messages first.
This is what most people want for a _search_ command. It's often different for actually reading mail in an inbox, (where it makes more sense to have results displayed in chronological order), but in such a case, ther user is likely using an interface that can simply pass the --sort=oldest-first option to "notmuch search". Here we're also change the sort enum from NOTMUCH_SORT_DATE and NOTMUCH_SORT_DATE_REVERSE to NOTMUCH_SORT_OLDEST_FIRST and NOTMUCH_SORT_NEWEST_FIRST. Similarly we replace the --reverse option to "notmuch search" with two options: --sort=oldest-first and --sort=newest-first. Finally, these changes are all tracked in the emacs interface, (which has no change in its behavior).
Diffstat (limited to 'lib')
-rw-r--r--lib/notmuch.h4
-rw-r--r--lib/query.cc6
-rw-r--r--lib/thread.cc2
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/notmuch.h b/lib/notmuch.h
index 32b53328..f135fd3f 100644
--- a/lib/notmuch.h
+++ b/lib/notmuch.h
@@ -299,8 +299,8 @@ notmuch_query_create (notmuch_database_t *database,
/* Sort values for notmuch_query_set_sort */
typedef enum {
- NOTMUCH_SORT_DATE,
- NOTMUCH_SORT_DATE_REVERSE,
+ NOTMUCH_SORT_OLDEST_FIRST,
+ NOTMUCH_SORT_NEWEST_FIRST,
NOTMUCH_SORT_MESSAGE_ID
} notmuch_sort_t;
diff --git a/lib/query.cc b/lib/query.cc
index a70be1dd..a869f3e6 100644
--- a/lib/query.cc
+++ b/lib/query.cc
@@ -61,7 +61,7 @@ notmuch_query_create (notmuch_database_t *notmuch,
query->query_string = talloc_strdup (query, query_string);
- query->sort = NOTMUCH_SORT_DATE;
+ query->sort = NOTMUCH_SORT_NEWEST_FIRST;
return query;
}
@@ -109,10 +109,10 @@ notmuch_query_search_messages (notmuch_query_t *query,
}
switch (query->sort) {
- case NOTMUCH_SORT_DATE:
+ case NOTMUCH_SORT_OLDEST_FIRST:
enquire.set_sort_by_value (NOTMUCH_VALUE_TIMESTAMP, FALSE);
break;
- case NOTMUCH_SORT_DATE_REVERSE:
+ case NOTMUCH_SORT_NEWEST_FIRST:
enquire.set_sort_by_value (NOTMUCH_VALUE_TIMESTAMP, TRUE);
break;
case NOTMUCH_SORT_MESSAGE_ID:
diff --git a/lib/thread.cc b/lib/thread.cc
index baa9e7e8..9bb6a5e1 100644
--- a/lib/thread.cc
+++ b/lib/thread.cc
@@ -258,7 +258,7 @@ _notmuch_thread_create (void *ctx,
thread->oldest = 0;
thread->newest = 0;
- notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_DATE);
+ notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST);
for (messages = notmuch_query_search_messages (thread_id_query, 0, -1);
notmuch_messages_has_more (messages);