We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f75a1cc commit 82eecf9Copy full SHA for 82eecf9
1 file changed
src/ace/Editor.js
@@ -946,9 +946,9 @@ var Editor = function(renderer, doc) {
946
947
var range = this.$search.find(this.doc);
948
if (range) {
949
- this.selection.setSelectionRange(range);
950
- this.$updateDesiredColumn();
951
this.gotoLine(range.end.row+1, range.end.column);
+ this.$updateDesiredColumn();
+ this.selection.setSelectionRange(range);
952
}
953
};
954
0 commit comments