1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-10 11:15:46 +01:00

Don't commafy charlist options in :set output.

This commit is contained in:
Kris Maglione
2011-10-08 04:36:14 -04:00
parent be52494f4f
commit 0307817e4d
3 changed files with 7 additions and 4 deletions

View File

@@ -114,6 +114,7 @@ var RangeFinder = Module("rangefinder", {
this.rangeFind.highlighted = highlighted;
this.rangeFind.selections = selections;
}
this.rangeFind.pattern = str;
if (str)
this.lastFindPattern = str;
return pattern;
@@ -145,7 +146,7 @@ var RangeFinder = Module("rangefinder", {
| this.commandline.FORCE_SINGLELINE);
}
else
this.commandline.echo((this.rangeFind.backward ? "?" : "/") + this.lastFindPattern,
this.commandline.echo((this.rangeFind.backward ? "?" : "/") + this.rangeFind.pattern,
"Normal", this.commandline.FORCE_SINGLELINE);
if (this.options["hlfind"])