diff options
Diffstat (limited to 'commands/msg/toggle-thread-context.go')
-rw-r--r-- | commands/msg/toggle-thread-context.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/msg/toggle-thread-context.go b/commands/msg/toggle-thread-context.go index 6f8b7bbb..7530bc9e 100644 --- a/commands/msg/toggle-thread-context.go +++ b/commands/msg/toggle-thread-context.go @@ -3,7 +3,6 @@ package msg import ( "errors" - "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/lib/ui" ) @@ -17,15 +16,15 @@ func (ToggleThreadContext) Aliases() []string { return []string{"toggle-thread-context"} } -func (ToggleThreadContext) Complete(aerc *app.Aerc, args []string) []string { +func (ToggleThreadContext) Complete(args []string) []string { return nil } -func (ToggleThreadContext) Execute(aerc *app.Aerc, args []string) error { +func (ToggleThreadContext) Execute(args []string) error { if len(args) != 1 { return errors.New("Usage: toggle-entire-thread") } - h := newHelper(aerc) + h := newHelper() store, err := h.store() if err != nil { return err |