diff options
Diffstat (limited to 'commands/pin-tab.go')
-rw-r--r-- | commands/pin-tab.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/pin-tab.go b/commands/pin-tab.go index 9a626614..e2e897ed 100644 --- a/commands/pin-tab.go +++ b/commands/pin-tab.go @@ -3,7 +3,7 @@ package commands import ( "fmt" - "git.sr.ht/~rjarry/aerc/widgets" + "git.sr.ht/~rjarry/aerc/app" ) type PinTab struct{} @@ -16,11 +16,11 @@ func (PinTab) Aliases() []string { return []string{"pin-tab", "unpin-tab"} } -func (PinTab) Complete(aerc *widgets.Aerc, args []string) []string { +func (PinTab) Complete(aerc *app.Aerc, args []string) []string { return nil } -func (PinTab) Execute(aerc *widgets.Aerc, args []string) error { +func (PinTab) Execute(aerc *app.Aerc, args []string) error { if len(args) != 1 { return fmt.Errorf("Usage: %s", args[0]) } |