summary refs log tree commit diff stats
path: root/commands/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/exec.go')
-rw-r--r--commands/exec.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/exec.go b/commands/exec.go
index 27edf5d..f615b71 100644
--- a/commands/exec.go
+++ b/commands/exec.go
@@ -17,15 +17,15 @@ func init() {
 	register(ExecCmd{})
 }
 
-func (_ ExecCmd) Aliases() []string {
+func (ExecCmd) Aliases() []string {
 	return []string{"exec"}
 }
 
-func (_ ExecCmd) Complete(aerc *widgets.Aerc, args []string) []string {
+func (ExecCmd) Complete(aerc *widgets.Aerc, args []string) []string {
 	return nil
 }
 
-func (_ ExecCmd) Execute(aerc *widgets.Aerc, args []string) error {
+func (ExecCmd) Execute(aerc *widgets.Aerc, args []string) error {
 	if len(args) < 2 {
 		return errors.New("Usage: exec [cmd...]")
 	}
04e893'>1076f2b
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