all: purge redundant underscores

Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
This commit is contained in:
Wagner Riffel 2019-09-03 16:34:03 -03:00 committed by Drew DeVault
parent c6b776adbf
commit 6838c23478
45 changed files with 132 additions and 132 deletions
commands/msg

View file

@ -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