about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/~bh/downloads/index.html?C=N;O=A
Commit message (Expand)AuthorAgeFilesLines
* *elioat2023-08-231-0/+27
-0400 Implement :mkdir command' href='/akspecs/aerc/commit/commands/account/mkdir.go?h=0.5.1&id=d22a9140cdd34960cc2a50b2ae9011091f39118b'>d22a914 ^
d22a914 ^



2a09617 ^

d22a914 ^
2a09617 ^


6838c23 ^
2a09617 ^


6838c23 ^
2a09617 ^
d22a914 ^

6838c23 ^
39307a6 ^
d22a914 ^





39307a6 ^
d22a914 ^




76a9181 ^
d22a914 ^

caad1b2 ^
d22a914 ^



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
40
41
42
43
44
45
46
47



                
                 
              
 



                                               

                     
             


                           
                                   


                                
                                                                     
                  

 
                                                                 
                           





                                                         
                                           




                                                        
                                                                             

                                                       
                                                               



                  
package account

import (
	"errors"
	"strings"
	"time"

	"git.sr.ht/~sircmpwn/aerc/widgets"
	"git.sr.ht/~sircmpwn/aerc/worker/types"
)

type MakeDir struct{}

func init() {
	register(MakeDir{})
}

func (MakeDir) Aliases() []string {
	return []string{"mkdir"}
}

func (MakeDir) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (MakeDir) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) == 0 {
		return errors.New("Usage: :mkdir <name>")
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	name := strings.Join(args[1:], " ")
	acct.Worker().PostAction(&types.CreateDirectory{
		Directory: name,
	}, func(msg types.WorkerMessage) {
		switch msg := msg.(type) {
		case *types.Done:
			aerc.PushStatus("Directory created.", 10*time.Second)
			acct.Directories().Select(name)
		case *types.Error:
			aerc.PushError(" " + msg.Error.Error())
		}
	})
	return nil
}