summaryrefslogtreecommitdiff
path: root/notmuch.1
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-11-23 20:12:57 -0800
committerCarl Worth <cworth@cworth.org>2009-11-23 20:17:37 -0800
commit1fd8b7866f189a66e4491b01452f476371759f91 (patch)
tree9ba352943bb700f093946f3070c69bae6b568455 /notmuch.1
parentf6158039324e44159d449b459829dc7ad4e52acc (diff)
notmuch search: Remove the chunked-searching hack.
This was a poor workaround around the fact that the existing notmuch_threads_t object is implemented poorly. It's got a fine iterartor-based interface, but the implementation does all of the work up-front in _create rather than doing the work incrementally while iterating. So to start fixing this, first get rid of all the hacks we had working around this. This drops the --first and --max-threads options from the search command, (but hopefully nobody was using them anyway---notmuch.el certainly wasn't).
Diffstat (limited to 'notmuch.1')
-rw-r--r--notmuch.123
1 files changed, 0 insertions, 23 deletions
diff --git a/notmuch.1 b/notmuch.1
index c5a7711..2be77f9 100644
--- a/notmuch.1
+++ b/notmuch.1
@@ -154,29 +154,6 @@ Supported options for
include
.RS 4
.TP 4
-.BR \-\-max\-threads= <value>
-
-Restricts displayed search results to a subset of the complete results
-that would match the terms. With this option, no more than <value>
-thread results will be displayed. If this option is not used, then all
-matching threads will be displayed. See also the
-.B \-\-first
-option.
-
-.TP
-.BR \-\-first= <value>
-
-Omits the first <value> threads from the search results that would
-otherwise be displayed. Together with the
-.BR \-\-max\-threads
-option, this can be used to perform incremental searches. For example,
-the first 50 thread results can be displayed with
-.B "\-\-first=0 \-\-max\-threads=50"
-and the next 50 could be displayed with
-.B "\-\-first=50 \-\-max\-threads=50"
-etc.
-
-.TP
.BR \-\-sort= ( newest\-first | oldest\-first )
This option can be used to present results in either chronological order