diff options
author | Wagner Riffel <wgrriffel@gmail.com> | 2019-09-03 16:34:03 -0300 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-09-04 16:30:57 -1000 |
commit | 6838c23478944a9b45df1fa9a0f432ec77423987 (patch) | |
tree | df6c5eb1c3bb4af779f98dd5ec9fa2d5b7658b4f /commands/msg/move.go | |
parent | c6b776adbfb11ba34756a1d4f770b15c2fb3cb46 (diff) | |
download | aerc-6838c23478944a9b45df1fa9a0f432ec77423987.tar.gz |
all: purge redundant underscores
Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
Diffstat (limited to 'commands/msg/move.go')
-rw-r--r-- | commands/msg/move.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go index b7d52ff..2f8c61e 100644 --- a/commands/msg/move.go +++ b/commands/msg/move.go @@ -18,15 +18,15 @@ func init() { register(Move{}) } -func (_ Move) Aliases() []string { +func (Move) Aliases() []string { return []string{"mv", "move"} } -func (_ Move) Complete(aerc *widgets.Aerc, args []string) []string { +func (Move) Complete(aerc *widgets.Aerc, args []string) []string { return commands.GetFolders(aerc, args) } -func (_ Move) Execute(aerc *widgets.Aerc, args []string) error { +func (Move) Execute(aerc *widgets.Aerc, args []string) error { opts, optind, err := getopt.Getopts(args, "p") if err != nil { return err |