summaryrefslogtreecommitdiff
path: root/alot/completion
Commit message (Collapse)AuthorAge
* utils/cached_property: replace with the stdlib implementationAnton Khirnov2021-05-13
|
* completion: fix some __init__ signaturesAnton Khirnov2021-01-25
|
* completion/tag: sort the tagsAnton Khirnov2021-01-21
|
* Use super() where applicable.Anton Khirnov2021-01-21
|
* completion/query: update keywordsAnton Khirnov2021-01-16
| | | | | | | | | Make them a class, rather than instance, attribute, since they are static. Update the list to include all the terms currently listed in notmuch-search-terms manual, skipping aliases 'is' and 'mid' (to avoid unnecessarily crowding the completion space).
* completion/query: add class attribute prototypesAnton Khirnov2021-01-16
| | | | | Also, remove unused dbman attribute and add _ prefix to private attribute keywords.
* db/utils: move formataddr to helperAnton Khirnov2020-03-05
| | | | | | | It has no relation to database, so helper seems like a better place for it. As there is nothing left in db/utils, it is removed.
* buffers/thread: make the widget split-windowAnton Khirnov2020-03-01
| | | | | | | | | | The top part displayes the thread structure, the bottom half the message body. This makes more sense then displaying the message inside the tree structure and makes it easier to implement features such as folding a part of the message body. Drop commands related to folding, since that functionality does not exist anymore.
* directly import Completers from their resp modulePatrick Totzke2019-08-17
| | | | ... instead of from alot.completion
* cleanup: remove unused parameterPatrick Totzke2019-08-17
| | | | ... to Completer.relevant_part
* make codeclimate happy(er)Patrick Totzke2019-08-17
|
* use formataddr helper in accounts completerPatrick Totzke2019-08-17
|
* refactor prompt completionPatrick Totzke2019-08-17
This just splits the file completion.py into several files, one for each Completer subclass.