I am loading script into the Ace editor, and upon render, the entire script is highlighted as if someone did a ctrl+a (select all). How do make the contents "unselected" ... seems like it should work that way by default.
Based on documentation, it seems like I could workaround with:
session.getSelection().clearSelection();
... and based on this SO question, it seems I could also do this:
editor.setValue(str, -1) // moves cursor to the start
editor.setValue(str, 1) // moves cursor to the end
Neither work...