Files
Dominik Schulz 7c63ba09b7 chore(deps): migrate from urfave/cli v2 to v3 (#3428)
Migrate the entire codebase from github.com/urfave/cli/v2 to
github.com/urfave/cli/v3 (v3.9.0).

Key breaking changes addressed:
- cli.App removed, replaced by *cli.Command
- ActionFunc signature: func(*Context) error -> func(context.Context, *Command) error
- BeforeFunc signature: func(*Context) error -> func(context.Context, *Command) (context.Context, error)
- app.RunContext -> app.Run
- app.EnableBashCompletion -> app.EnableShellCompletion
- Subcommands field renamed to Commands
- EnvVars on flags -> Sources: cli.EnvVars(...)
- cli.NewContext removed; test helpers updated to use cmd.Run() pattern
- cli.Flag interface updated (Apply removed, Get/PreParse/PostParse/Set added)
- VersionPrinter type changed to func(*Command)

Also updates .capabilities.json baseline to reflect new cli/v3 call paths.

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2026-05-16 18:13:19 +02:00

45 lines
986 B
Go

//go:build linux
package editor
import (
"context"
"os"
"os/exec"
"github.com/gopasspw/gopass/internal/config"
"github.com/gopasspw/gopass/pkg/debug"
"github.com/urfave/cli/v3"
)
// Path return the name/path of the preferred editor.
func Path(ctx context.Context, cmd *cli.Command) string {
if cmd != nil {
if ed := cmd.String("editor"); ed != "" {
debug.Log("Using editor from command line: %s", ed)
return ed
}
}
if ed := config.String(ctx, "edit.editor"); ed != "" {
debug.Log("Using editor from config: %s", ed)
return ed
}
if ed := os.Getenv("EDITOR"); ed != "" {
debug.Log("Using editor from $EDITOR: %s", ed)
return ed
}
if p, err := exec.LookPath("editor"); err == nil {
debug.Log("Using editor from $PATH: %s", p)
return p
}
// if neither EDITOR is set nor "editor" available we'll just assume that vi
// is installed. If this fails the user will have to set `$EDITOR`.
debug.Log("Using default editor: %s", "vi")
return "vi"
}