Page MenuHomeMusing Studio

edit.go
No OneTemporary

package writeascli
import (
"os"
)
var editors = []string{"WRITEAS_EDITOR", "EDITOR"}
func GetConfiguredEditor() string {
for _, v := range editors {
if e := os.Getenv(v); e != "" {
return e
}
}
return ""
}

File Metadata

Mime Type
text/plain
Expires
Fri, Feb 20, 7:24 AM (1 d, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3633802

Event Timeline