diff options
-rw-r--r-- | common/modules/finder.jsm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/modules/finder.jsm b/common/modules/finder.jsm index b85ae8f3..0bfaf54e 100644 --- a/common/modules/finder.jsm +++ b/common/modules/finder.jsm @@ -107,7 +107,8 @@ var RangeFinder = Module("rangefinder", { | this.commandline.FORCE_SINGLELINE); }, 0); else - this.commandline.widgets.message = ["Normal", (this.rangeFind.backward ? "?" : "/") + this.lastFindPattern]; + this.commandline.echo((this.rangeFind.backward ? "?" : "/") + this.lastFindPattern, + null, this.commandline.FORCE_SINGLELINE); if (this.options["hlfind"]) this.highlight(); |