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/terminal

View file

@ -12,15 +12,15 @@ func init() {
register(Close{})
}
func (_ Close) Aliases() []string {
func (Close) Aliases() []string {
return []string{"close"}
}
func (_ Close) Complete(aerc *widgets.Aerc, args []string) []string {
func (Close) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (_ Close) Execute(aerc *widgets.Aerc, args []string) error {
func (Close) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: close")
}