From e2d5b1d01b21437e9478e0b6865bba23a43436ed Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Sun, 6 May 2012 20:55:38 -0700 Subject: [PATCH] * Fixed backwards searching --- lib/ace/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/editor.js b/lib/ace/editor.js index 01686d80..ac7c31ac 100644 --- a/lib/ace/editor.js +++ b/lib/ace/editor.js @@ -1965,7 +1965,7 @@ var Editor = function(renderer, session) { options = options || {}; options.needle = needle; this.$search.set(options); - this.$find(false, animate); + this.$find(options.backwards, animate); }; /** related to: Editor.find