aboutsummaryrefslogtreecommitdiffhomepage
path: root/man
Commit message (Collapse)AuthorAge
* fix .gitignore for gzipped man pagesGravatar Jani Nikula2012-01-17
|
* cli: add support for replying just to the sender in "notmuch reply"Gravatar Jani Nikula2012-01-14
| | | | | | | | | | | | Add new option --reply-to=(all|sender) to "notmuch reply" to select whether to reply to all (sender and all recipients), or just sender. Reply to all remains the default. Credits to Mark Walters <markwalters1009@gmail.com> for his similar earlier work where I picked up the basic idea of handling reply-to-sender in add_recipients_from_message(). All bugs are mine, though. Signed-off-by: Jani Nikula <jani@nikula.org>
* man: add missing SEE ALSO header to notmuch reply man pageGravatar Jani Nikula2012-01-10
| | | | Signed-off-by: Jani Nikula <jani@nikula.org>
* force install notmuch-setup.1 symlinkGravatar Jameson Graef Rollins2011-12-31
| | | | This will prevent the install from failing if the link already exists.
* break up dump and restore man pages.Gravatar Jameson Graef Rollins2011-12-31
| | | | | | | | These functions are enough different in their behavior that it's not really worth it to combine them. They overlap in the format of the dump file, but we can have a separate page that describes the dump format, and either reference it or include it. This also keeps things nice and clean with one page per command.
* remove reference to notmuch-part.1 from Makefile.localGravatar Jameson Graef Rollins2011-12-31
|
* build-system: update for split man pagesGravatar David Bremner2011-12-31
| | | | | | | | | | | | | | | | | | - We have to remove the installation of notmuch.1.gz from the top level Makefile.local. - Man pages with multiple names are handled by making relative symlinks in the install-man target. - update version tests and convenience rules for split man pages The man page version test still only checks notmuch.1, but the location is updated. update-man-versions is longer than the one-line previously in update-versions mainly because I decided to take the high road and stick to POSIX sed (thus, no sed -i). The sed regex itself is more complicated to cope with variations in the headers.
* man/*: fixup page referencesGravatar David Bremner2011-12-31
| | | | | | | - Replace references to section X below with page refences. - Add SEE ALSO to each page. This is a bit error prone, because each SEE ALSO section is different, i.e. a page does not refer to itself.
* notmuch-config.1: fix typoGravatar David Bremner2011-12-31
|
* notmuch.1: smooth wording.Gravatar David Bremner2011-12-31
| | | | | After most of the content was ripped out of the page, a few words were needed to glue things back togetehr.
* man/*: formatting cleanupGravatar David Bremner2011-12-31
| | | | | | | | | | | | | | | | | | | | | | | | | | Fix some problems with indentation (controlled by markup) and whitespace. - notmuch.1: reformat Use .SS macro to make "notmuch setup" a subsection. Introduce another subsection for the remaining commands. - notmuch-config.1: reformat Put all the syntax in the synopsis. Supposedly this is the the UNIX way. - notmuch-reply.1: fix formatting issues. Give nicer formatting for synopsis. Insert missing SEE ALSO header. - notmuch-dump.1: reformat using subsections These seems more natural, although, as mentioned, it does require referring back to the synopsis. Or maybe copying parts of the synopsis
* man: add symlinks for notmuch-restore.1 and notmuch-setup.1Gravatar David Bremner2011-12-31
| | | | | | These are just for the convenience of testers using $src/man as an element of MANPATH. They are intentionally omitted from MAN1, so that they do not interfere with the install.
* remove notmuch-part from documentation.Gravatar David Bremner2011-12-31
| | | | | This should have been done when "notmuch part" was deprecated and replaced by notmuch show --part, but it slipped through the cracks.
* initial splitting of notmuch.1Gravatar David Bremner2011-12-31
We mostly just cut and paste the command descriptions into individual files, with a short header added to each one. The splitting into subdirectories is to support the use of ./man as an element in MANPATH, e.g. for testing.