summaryrefslogtreecommitdiff
path: root/alot/buffers
Commit message (Collapse)AuthorAge
* ui: Convert apply_command to a coroutineDylan Baker2018-07-26
| | | | | | This is a pretty invasive patch, since the ui code is used so extensively, it requires going into a lot of other code and converting those to coroutines, since before they returned deferred's.
* buffers/search: add missing NotmuchErrorDylan Baker2018-07-26
| | | | Found due to another bug :)
* add new buffer type NamedQueriesBufferPatrick Totzke2018-07-24
| | | | that displays the named query strings stored in the notmuch database
* add missing importPatrick Totzke2018-06-22
| | | | | .. that accidentally got dropped during c86623d9c7daaa2f9a832135a11870a0d91110a3 This fixes #1255
* remove deprecated future importsPatrick Totzke2018-06-19
| | | | see also #1250
* refactor buffersPatrick Totzke2018-06-19
This splits buffers.py, which contained all buffer classes, into several smaller files. issue #1226