summaryrefslogtreecommitdiffstats
path: root/doc/notmuch-emacs.rst
AgeCommit message (Collapse)Author
2020-06-01doc: fix for out-of-tree builds of notmuch-emacs docsDavid Bremner
The sphinx-doc include directive does not have the ability to include files from the build tree, so we replace the include with reading the files in conf.py. The non-trivial downside of this is that the emacs docstrings are now defined for every rst source file. They are namespaced with docstring::, so hopefully there will not be any surprises. One thing that is noticable is a small (absolute) time penalty in running sphinx-doc.
2019-03-27doc: Clean up warnings when building notmuch-emacs docsDaniel Kahn Gillmor
Without this change, we see this during the build: sphinx-build -b html -d doc/_build/doctrees -q ./doc doc/_build/html …/doc/notmuch-emacs.rst:67: WARNING: Unexpected indentation. …/doc/notmuch-emacs.rst:165: WARNING: Unexpected indentation. …/doc/notmuch-emacs.rst:306: WARNING: Unexpected indentation. This source change doesn't seem to have any effect on the generated HTML, at least. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
2019-02-21Emacs: bind "g" to 'notuch-refresh-this-bufferMatt Armstrong
Using "g" for refresh operations is a pretty common Emacs convention, codified by `special-mode' in simple.el.
2018-12-08doc/emacs: document notmuch-cycle-notmuch-buffersDavid Bremner
For some reason I couldn't find this when I searched, so add it to the manual.
2018-12-08doc/emacs: document notmuch-poll*David Bremner
The current "documentation" for these variables consists of only the variable names.
2018-12-08doc/emacs: document notmuch-tagging-keysDavid Bremner
Calling these "Global keys" is arguably a bit of a stretch, but they do work in all notmuch modes except notmuch-hello.
2018-12-08doc/emacs: document notmuch-message-headers*David Bremner
More precisely, copy the docstrings into notmuch-emacs documentation pages.
2018-12-08doc/emacs: add documentation for stashing 'c X' bindingsDavid Bremner
This is the first of a series of changes requiring the extracted docstrings.
2018-05-26docs: add initial documentation for notmuch-tag-jumpDavid Bremner
This is mainly to improve discoverability. It seems that doing variable cross-references is not easy without using some sphinx extension/customization.
2018-05-26doc: initial documentation for notmuch-tree modeDavid Bremner
2018-05-26doc: initial documentation for notmuch-show-modeDavid Bremner
This is pretty minimal, but will hopefully inspire others to contribute more complete documentation. If nothing else, it points out '?'.
2016-11-17doc: fix references in notmuch-emacs.rstJani Nikula
Fix make sphinx-texinfo warnings: WARNING: undefined label: notmuch-jump (if the link has no caption the label must precede a section header) WARNING: undefined label: notmuch-saved-searches (if the link has no caption the label must precede a section header)
2016-06-11doc/notmuch-emacs.rst: update notmuch-hello buffer help textTomi Ollila
To look the same as commit b8a136187a3b changed it in emacs MUA code.
2014-10-04doc: Emacs manual improvements and expansionsAustin Clements
Fix several typos, improve general wording and flow, and add some information on notmuch-jump.
2014-04-08doc: added 'Init File' section to notmuch-emacs info sourceTomi Ollila
While adding that fixed (also other) typos noticed by aspell(1) run, and capitalized Emacs and (most) Notmuch terms to match how emacs Info documentation seems to look in general.
2014-03-09doc: convert sphinx based docsDavid Bremner
This is the output from sphinx-quickstart, massaged a bit, along with our existing man pages converted to rst. A skeleton notmuch-emacs manual is also included. It is not suitable for end user use yet.