1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-01 05:25:45 +01:00
This commit is contained in:
Kris Maglione
2008-12-18 18:21:01 -05:00
parent ac0b476988
commit c094a2dd2b
6 changed files with 87 additions and 35 deletions

View File

@@ -288,6 +288,7 @@ function Search() //{{{
"Find word under cursor",
function ()
{
found = false;
search.searchSubmitted(buffer.getCurrentWord(), false);
search.findAgain();
});
@@ -296,6 +297,7 @@ function Search() //{{{
"Find word under cursor backwards",
function ()
{
found = false;
search.searchSubmitted(buffer.getCurrentWord(), true);
search.findAgain();
});