summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_notmuch
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
committerAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
commit6e1ab9aa550695ee7e3d467b4173c0b83ba7f759 (patch)
tree8fb7faa4364a7cbf1cba48296a5f537e13f2a8d9 /Completion/Unix/Command/_notmuch
parent5ad56a41f1ee2e61abca079f5ea8909f895ac2dd (diff)
parentf027f1d6e876708bc75d4217e1ca26898658d8d3 (diff)
downloadzsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.tar.gz
zsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.zip
Merge tag 'zsh-5.4.2-test-2' / 'upstream' branch into 'debian' branch
Test version 2 prior to zsh 5.5.
Diffstat (limited to 'Completion/Unix/Command/_notmuch')
-rw-r--r--Completion/Unix/Command/_notmuch8
1 files changed, 7 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_notmuch b/Completion/Unix/Command/_notmuch
index d6cc58deb..6174d2c00 100644
--- a/Completion/Unix/Command/_notmuch
+++ b/Completion/Unix/Command/_notmuch
@@ -6,12 +6,16 @@ _notmuch_commands()
notmuch_commands=(
'setup:interactively set up notmuch for first use'
'new:find and import any new message to the database'
+ 'insert:add a new message into the maildir and notmuch database'
'search:search for messages matching the search terms, display matching threads as results'
+ 'address:get addresses from messages matching the given search terms'
'reply:constructs a reply template for a set of messages'
'show:show all messages matching the search terms'
'tag:add or remove tags for all messages matching the search terms'
'dump:creates a plain-text dump of the tags of each message'
'restore:restores the tags from the given file'
+ 'compact:compact the notmuch database'
+ 'reindex:re-index all messages matching the search terms'
'help:show details on a command'
'compact:compact the notmuch database'
'config:access the notmuch configuration file'
@@ -30,7 +34,9 @@ _notmuch_help_topics()
{
local -a notmuch_help_topics
notmuch_help_topics=(
- 'search-terms:show common search-terms syntax'
+ 'search-terms:common search-term syntax'
+ 'hooks:hooks that will be run before or after certain commands'
+ 'properties:message property conventions and documentation'
)
_describe -t notmuch-help-topics 'topic' notmuch_help_topics
}