text editor selection: follow unix defacto standards #356

Merged
6543 merged 2 commits from plgruener/tea:visual_patch into master 2021-06-21 12:08:27 +00:00
Showing only changes of commit e709df6259 - Show all commits

View File

@ -112,7 +112,7 @@ func OpenFileInEditor(filename string) error {
editor = os.Getenv("EDITOR")
if editor == "" {
fmt.Println("No $VISUAL or $EDITOR env is set, defaulting to vim")
editor = "vim"
editor = "vi"
}
}