Compare commits

..

No commits in common. "a4f2f79c81df045ed067d89aa6f4e3ab706007e0" and "6c9ae6bccd691308aa20a8349792b3705356826e" have entirely different histories.

2 changed files with 3 additions and 1 deletions

View file

@ -23,7 +23,7 @@ import (
const ( const (
name string = "agedit" name string = "agedit"
usage string = "Edit age encrypted files with your $EDITOR" usage string = "Edit age encrypted files with your $EDITOR"
version string = "0.3.1" version string = "0.3.0"
help_template string = `NAME: help_template string = `NAME:
{{.Name}} {{if .Version}}v{{.Version}}{{end}} - {{.Usage}} {{.Name}} {{if .Version}}v{{.Version}}{{end}} - {{.Usage}}

2
pkg/env/env.go vendored
View file

@ -2,7 +2,9 @@ package env
import ( import (
"os" "os"
"regexp"
"runtime" "runtime"
"strings"
) )
// GetEditor gets the configured editor by checking environmental // GetEditor gets the configured editor by checking environmental