2020-03-07 17:42:41 +01:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
2020-03-07 17:42:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type PinTab struct{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
register(PinTab{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PinTab) Aliases() []string {
|
|
|
|
return []string{"pin-tab", "unpin-tab"}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PinTab) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PinTab) Execute(aerc *widgets.Aerc, args []string) error {
|
|
|
|
if len(args) != 1 {
|
|
|
|
return fmt.Errorf("Usage: %s", args[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
switch args[0] {
|
|
|
|
case "pin-tab":
|
|
|
|
aerc.PinTab()
|
|
|
|
case "unpin-tab":
|
|
|
|
aerc.UnpinTab()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|