about summary refs log tree commit diff stats
path: root/commands/quit.go
blob: c9d83b7e559fae8d807852f730cacccb69ee5d0e (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
package commands

import (
	"errors"

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

func init() {
	register("quit", CommandQuit)
}

type ErrorExit int

func (err ErrorExit) Error() string {
	return "exit"
}

func CommandQuit(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: quit")
	}
	return ErrorExit(1)
}
class="w"> *config.AercConfig) *TermHost { grid := ui.NewGrid().Rows([]ui.GridSpec{ {ui.SIZE_WEIGHT, 1}, }).Columns([]ui.GridSpec{ {ui.SIZE_EXACT, conf.Ui.SidebarWidth}, {ui.SIZE_WEIGHT, 1}, }) grid.AddChild(term).At(0, 1) return &TermHost{grid, term} } func (th *TermHost) Draw(ctx *ui.Context) { th.grid.Draw(ctx) } func (th TermHost) Invalidate() { th.grid.Invalidate() } func (th *TermHost) OnInvalidate(fn func(d ui.Drawable)) { th.grid.OnInvalidate(func(_ ui.Drawable) { fn(th) }) } func (th *TermHost) Event(event tcell.Event) bool { return th.term.Event(event) } func (th *TermHost) Focus(focus bool) { th.term.Focus(focus) } func (th *TermHost) Terminal() *Terminal { return th.term }