about summary refs log tree commit diff
path: root/Completion/User/_mutt
blob: dfb50ae3a13385b87b046edf2013cdf566cad060 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#compdef mutt

local curcontext="$curcontext" state line muttrc="~/.muttrc" ret=1

 _arguments -C \
 '::recipient:->userhost' \
 '-a:MIME attachment:_files' \
 '-b:BCC recipient:->userhost' \
 '-c:CC recipient:->userhost' \
 '-e:post-init configuration:' \
 '-f+:mailbox:_mailboxes' \
 '-F+:init file:_files' \
 '-h+:help:' \
 '-H+:draft file:_files' \
 '-i:include file:_files' \
 '-m+:default mailbox type:(mbox MMDF MH Maildir)' \
 '-n+:bypass system configuration:' \
 '-p+:resume postponed message:' \
 '-R+:open in read-only mode:' \
 '-s+:subject:' \
 '-v+:version:' \
 '-x+:emulate mailx compose:' \
 '-y+:start listing mailboxes:' \
 '-z+:start only if new messages:' \
 '-Z+:open first mailbox with new mail:' && ret=0

if [[ "$state" = userhost ]]; then
  _tags hosts || return 1

  if compset -P '*@'; then
    _description hosts expl 'remote host name'
    _hosts "$expl[@]" -q -S, && return 0
  else
    _description users expl 'login name'
    _users "$expl[@]" -q -S@ && return 0
  fi
fi

return ret