Page MenuHomeMusing Studio

edit.go
No OneTemporary

package main
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
Sat, Feb 7, 3:30 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3620532

Event Timeline