about summary refs log tree commit diff stats
path: root/arc/.traces/default-space-and-get-indirect
Commit message (Expand)AuthorAgeFilesLines
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+60
d.go?h=0.4.0&id=bfefafff27b126c485054c4d357e095ea2bd1147'>bfefaff ^
62946ff ^
98da4c9 ^
513e8aa ^
62946ff ^


513e8aa ^
62946ff ^

2a09617 ^

62946ff ^
2a09617 ^


6838c23 ^
2a09617 ^


6838c23 ^
39307a6 ^
bfefaff ^










62946ff ^

6838c23 ^
39307a6 ^
023a262 ^
62946ff ^
513e8aa ^



39307a6 ^

023a262 ^
39307a6 ^
513e8aa ^

62946ff ^
513e8aa ^
62946ff ^
513e8aa ^






62946ff ^
513e8aa ^
62946ff ^
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67


                
            
                 
 
                                          
                                         

     
                          
 
                             
             

                                   
                                           

                             
                                                                             
                                       









                                              
 
                                                                         
                          
                                                          
         


                              
                                             
                            
                                 
                                                                            
                        
                                            
                 





                                                
         
                  
 
package commands

import (
	"errors"
	"os"
	"strings"

	"git.sr.ht/~sircmpwn/aerc/widgets"
	"github.com/mitchellh/go-homedir"
)

var (
	previousDir string
)

type ChangeDirectory struct{}

func init() {
	register(ChangeDirectory{})
}

func (ChangeDirectory) Aliases() []string {
	return []string{"cd"}
}

func (ChangeDirectory) Complete(aerc *widgets.Aerc, args []string) []string {
	path := strings.Join(args, " ")
	completions := CompletePath(path)

	var dirs []string
	for _, c := range completions {
		// filter out non-directories
		if strings.HasSuffix(c, "/") {
			dirs = append(dirs, c)
		}
	}

	return dirs
}

func (ChangeDirectory) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) < 1 {
		return errors.New("Usage: cd [directory]")
	}
	cwd, err := os.Getwd()
	if err != nil {
		return err
	}
	target := strings.Join(args[1:], " ")
	if target == "" {
		target = "~"
	} else if target == "-" {
		if previousDir == "" {
			return errors.New("No previous folder to return to")
		} else {
			target = previousDir
		}
	}
	target, err = homedir.Expand(target)
	if err != nil {
		return err
	}
	if err := os.Chdir(target); err == nil {
		previousDir = cwd
	}
	return err
}