I want to move the cursor on the last line of the editor after
editor.setValue(value) has done it's thing.
Is there a callback in editor.setValue() that i can use so i know it finished loading, or should i go ahead and implement my own?
I then want to do this, which of course works but only after the editor window is populated, and for large files, it may take a few seconds:
// only works after editor.setValue(value) has finished
editor.gotoLine(editor.session.getLength());
Thank you.
--Adrian.