We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d20a461 + 2518474 commit 71e029eCopy full SHA for 71e029e
common/content/finder.js
@@ -181,6 +181,10 @@ var Finder = Module("finder", {
181
this.findbar._vimp_keepClosed = true;
182
183
this.findbar.onFindAgainCommand(reverse);
184
+
185
+ if (options.hlsearch) {
186
+ this.highlight();
187
+ }
188
},
189
190
/**
@@ -260,6 +264,11 @@ var Finder = Module("finder", {
260
264
let findbar = this.findbar;
261
265
262
266
let btn = findbar.getElement("highlight");
267
268
+ if (btn.checked) {
269
+ return;
270
271
263
272
btn.checked = true;
273
274
findbar._setHighlightTimeout();
0 commit comments