summary refs log tree commit diff stats
path: root/doc/pydoc/ranger.gui.widgets.browsercolumn.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/pydoc/ranger.gui.widgets.browsercolumn.html')
0 files changed, 0 insertions, 0 deletions
19-09-03 16:34:03 -0300 committer Drew DeVault <sir@cmpwn.com> 2019-09-04 16:30:57 -1000 all: purge redundant underscores' href='/akspecs/aerc/commit/commands/compose/abort.go?id=6838c23478944a9b45df1fa9a0f432ec77423987'>6838c23 ^
4fc6fee ^









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













                                          
                                 


                                
                                                                   


                  
                                                               









                                                             
package compose

import (
	"errors"

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

type Abort struct{}

func init() {
	register(Abort{})
}

func (Abort) Aliases() []string {
	return []string{"abort"}
}

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

func (Abort) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: abort")
	}
	composer, _ := aerc.SelectedTab().(*widgets.Composer)

	aerc.RemoveTab(composer)
	composer.Close()

	return nil
}