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
|
@ -17,15 +17,15 @@ func init() {
|
|||
register(Copy{})
|
||||
}
|
||||
|
||||
func (_ Copy) Aliases() []string {
|
||||
func (Copy) Aliases() []string {
|
||||
return []string{"cp", "copy"}
|
||||
}
|
||||
|
||||
func (_ Copy) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||
func (Copy) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (_ Copy) Execute(aerc *widgets.Aerc, args []string) error {
|
||||
func (Copy) Execute(aerc *widgets.Aerc, args []string) error {
|
||||
opts, optind, err := getopt.Getopts(args, "p")
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue