1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 05:25:46 +01:00

* :redraw and ctrl-l commands

* \u\U changed to \l\L
This commit is contained in:
Martin Stubenschrott
2007-10-08 13:21:21 +00:00
parent fc0409b493
commit ad5138cf91
5 changed files with 27 additions and 5 deletions

View File

@@ -70,10 +70,10 @@ function Search() //{{{
search_pattern = pattern;
// links only search - \u wins if both modifiers specified
if (/\\u/.test(pattern))
// links only search - \l wins if both modifiers specified
if (/\\l/.test(pattern))
links_only = false;
else if (/\U/.test(pattern))
else if (/\L/.test(pattern))
links_only = true;
else if (vimperator.options["linksearch"])
links_only = true;