blob: 8f8d4aacc569560cf76bdf1de66828f5d860da80 (
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
|
package compose
import (
"strings"
"git.sr.ht/~rjarry/aerc/app"
)
type CC struct{}
func init() {
register(CC{})
}
func (CC) Aliases() []string {
return []string{"cc", "bcc"}
}
func (CC) Complete(aerc *app.Aerc, args []string) []string {
return nil
}
func (CC) Execute(aerc *app.Aerc, args []string) error {
var addrs string
if len(args) > 1 {
addrs = strings.Join(args[1:], " ")
}
composer, _ := aerc.SelectedTabContent().(*app.Composer)
switch args[0] {
case "cc":
return composer.AddEditor("Cc", addrs, true)
case "bcc":
return composer.AddEditor("Bcc", addrs, true)
}
return nil
}
|