We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b82ff commit c9d5127Copy full SHA for c9d5127
main.go
@@ -371,7 +371,7 @@ func cmdEdit(c *cli.Context) error {
371
cmd.Stdin = strings.NewReader(strings.Join(files, "\n"))
372
b, err := cmd.CombinedOutput()
373
if err != nil {
374
- return fmt.Errorf("cannot run %q: %v: you need to install peco first: https://github.com/peco/peco", cfg.SelectCmd, err)
+ return fmt.Errorf("%v: you need to install peco first: https://github.com/peco/peco", err)
375
}
376
files = strings.Split(strings.TrimSpace(string(b)), "\n")
377
for i, file := range files {
0 commit comments