So you can set value of an ace editor with setValue but after setting the value, the editor will select the whole value of the editor. How do you disable this? This
setValue
You can even use clearSelection() after you do an setValue();
editor.setValue("Hello World"); editor.clearSelection(); // This will remove the highlight over the text