From c6ad0e0eca9d0ddd3a29266bdd3926232ddcc731 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Wed, 12 Mar 2008 16:01:02 +0000 Subject: [PATCH] updated TODO, Donators --- Donators | 3 +++ TODO | 1 + content/find.js | 5 +++++ 3 files changed, 9 insertions(+) diff --git a/Donators b/Donators index 4125fde0..bccb41b9 100644 --- a/Donators +++ b/Donators @@ -2,6 +2,9 @@ Note: If you don't wish to appear on this list when making a donation, please tell me. 2008: +* Anirudh Sanjeev +* Ted Pavlic +* Jacqueline Wegscheid * Kashyap Paidimarri * Gabriel Gellner * Marco Candrian diff --git a/TODO b/TODO index 5d90ebce..d7ebd701 100644 --- a/TODO +++ b/TODO @@ -11,6 +11,7 @@ BUGS: same for http://forum.mootools.net/topic.php?id=3458 - insert abbreviations broken on - :sidebar improvements (:sidebar! Downloads while downloads is open should refocus the sidebar) +- :sidebar History is broken - http://www.maximonline.com/jokes/ - the prev and next buttons on the image map are not hinted FEATURES: diff --git a/content/find.js b/content/find.js index 14ed167a..7ac08653 100644 --- a/content/find.js +++ b/content/find.js @@ -125,18 +125,23 @@ vimperator.Search = function () //{{{ vimperator.search.clear(); } }); + vimperator.options.add(["hlsearchstyle", "hlss"], "CSS specification of highlighted search items", "string", "color: black; background-color: yellow; padding: 0; display: inline;"); + vimperator.options.add(["ignorecase", "ic"], "Ignore case in search patterns", "boolean", true); + vimperator.options.add(["incsearch", "is"], "Show where the search pattern matches as it is typed", "boolean", true); + vimperator.options.add(["linksearch", "lks"], "Limit the search to hyperlink text", "boolean", false); + vimperator.options.add(["smartcase", "scs"], "Override the 'ignorecase' option if the pattern contains uppercase characters", "boolean", true);