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
Wed, Feb 18, 8:41 PM (1 d, 13 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3628290

Event Timeline