github.com/u-root/u-root@v7.0.1-0.20200915234505-ad7babab0a8e+incompatible/cmds/core/elvish/edit/rprompt_persistent.go (about) 1 package edit 2 3 import ( 4 "github.com/u-root/u-root/cmds/core/elvish/eval" 5 "github.com/u-root/u-root/cmds/core/elvish/eval/vars" 6 ) 7 8 func init() { 9 atEditorInit(func(ed *editor, ns eval.Ns) { 10 ed.RpromptPersistent = false 11 ns["rprompt-persistent"] = vars.FromPtr(&ed.RpromptPersistent) 12 }) 13 }