Make commands join args with spaces
This patch ensures the following commands join their arguments with spaces to make it easier to interact with: - cf - mkdir - cd - attach - detach - ct - copy - move - save
This commit is contained in:
parent
3ec9fd216d
commit
39307a6fa7
9 changed files with 60 additions and 66 deletions
commands/compose
|
@ -3,6 +3,7 @@ package compose
|
|||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"git.sr.ht/~sircmpwn/aerc/commands"
|
||||
|
@ -22,20 +23,16 @@ func (Attach) Aliases() []string {
|
|||
}
|
||||
|
||||
func (Attach) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||
path := ""
|
||||
if len(args) >= 1 {
|
||||
path = args[0]
|
||||
}
|
||||
|
||||
path := strings.Join(args, " ")
|
||||
return commands.CompletePath(path)
|
||||
}
|
||||
|
||||
func (Attach) Execute(aerc *widgets.Aerc, args []string) error {
|
||||
if len(args) != 2 {
|
||||
if len(args) == 1 {
|
||||
return fmt.Errorf("Usage: :attach <path>")
|
||||
}
|
||||
|
||||
path := args[1]
|
||||
path := strings.Join(args[1:], " ")
|
||||
|
||||
path, err := homedir.Expand(path)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue