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
|
@ -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...]")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue