all: purge redundant underscores
Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
This commit is contained in:
parent
c6b776adbf
commit
6838c23478
45 changed files with 132 additions and 132 deletions
commands/msg
|
@ -16,15 +16,15 @@ func init() {
|
|||
register(Delete{})
|
||||
}
|
||||
|
||||
func (_ Delete) Aliases() []string {
|
||||
func (Delete) Aliases() []string {
|
||||
return []string{"delete", "delete-message"}
|
||||
}
|
||||
|
||||
func (_ Delete) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||
func (Delete) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (_ Delete) Execute(aerc *widgets.Aerc, args []string) error {
|
||||
func (Delete) Execute(aerc *widgets.Aerc, args []string) error {
|
||||
if len(args) != 1 {
|
||||
return errors.New("Usage: :delete")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue