1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 09:42:28 +01:00

fix the self reference in v.search.searchSubmitted

This commit is contained in:
Doug Kearns
2007-11-22 05:31:38 +00:00
parent 099a8c0a1c
commit fce286d6b2

View File

@@ -214,7 +214,7 @@ vimperator.Search = function () //{{{
// TODO: move to find() when reverse incremental searching is kludged in
// need to find again for reverse searching
if (backwards)
setTimeout(function () { self.findAgain(false); }, 0);
setTimeout(function () { vimperator.search.findAgain(false); }, 0);
if (vimperator.options["hlsearch"])
this.highlight(searchString);