summary refs log tree commit diff stats
path: root/tests/isolate
Commit message (Expand)AuthorAgeFilesLines
* 'isolate' builtin; refs https://github.com/nim-lang/RFCs/issues/244 (#15011)Andreas Rumpf2020-07-201-0/+36
underscores' href='/akspecs/aerc/commit/commands/prompt.go?h=0.5.1&id=6838c23478944a9b45df1fa9a0f432ec77423987'>6838c23 ^
ecd803a ^


6838c23 ^
ecd803a ^


6838c23 ^
ecd803a ^
feacca3 ^
ecd803a ^






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


                










                                          
                                  


                                 
                                                                    


                                           
                                                                
                          
                                                                      






                                        
package commands

import (
	"fmt"

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

type Prompt struct{}

func init() {
	register(Prompt{})
}

func (Prompt) Aliases() []string {
	return []string{"prompt"}
}

func (Prompt) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil // TODO: add completions
}

func (Prompt) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) < 3 {
		return fmt.Errorf("Usage: %s <prompt> <cmd>", args[0])
	}

	prompt := args[1]
	cmd := args[2:]
	aerc.RegisterPrompt(prompt, cmd)
	return nil
}