On Tuesday 03 of May 2011 04:23:59 Jason Dreisbach wrote: > Set my plan9.ini vesa resolution incorrectly... I get dropped to a shell on > boot, but I don't know of any non GUI editors for plan 9. > > Can anyone suggest an editor?
been there once, used sed, did the job for me. about the only thing it lacks when compared to usual interactive editors is edit-in-place. work around that like: cp php.ini php.ini.broken sed '(stuff)' < php.ini.broken > php.ini or use the standard text editor: ed ;-) a more plan-9-ish way would be to export relevant namespace subtree and work from a different machine, i guess... but i have no idea how to :D -- dexen deVries ``One can't proceed from the informal to the formal by formal means.''
