1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-01 00:15:47 +01:00

updated TODO, Donators

This commit is contained in:
Martin Stubenschrott
2008-03-12 16:01:02 +00:00
parent d5194cd43f
commit c6ad0e0eca
3 changed files with 9 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
<b>Note:</b> If you don't wish to appear on this list when making a donation, please tell me. <b>Note:</b> If you don't wish to appear on this list when making a donation, please tell me.
2008: 2008:
* Anirudh Sanjeev
* Ted Pavlic
* Jacqueline Wegscheid
* Kashyap Paidimarri * Kashyap Paidimarri
* Gabriel Gellner * Gabriel Gellner
* Marco Candrian * Marco Candrian

1
TODO
View File

@@ -11,6 +11,7 @@ BUGS:
same for http://forum.mootools.net/topic.php?id=3458 same for http://forum.mootools.net/topic.php?id=3458
- insert abbreviations broken on <space> - insert abbreviations broken on <space>
- :sidebar improvements (:sidebar! Downloads while downloads is open should refocus the sidebar) - :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 - http://www.maximonline.com/jokes/ - the prev and next buttons on the image map are not hinted
FEATURES: FEATURES:

View File

@@ -125,18 +125,23 @@ vimperator.Search = function () //{{{
vimperator.search.clear(); vimperator.search.clear();
} }
}); });
vimperator.options.add(["hlsearchstyle", "hlss"], vimperator.options.add(["hlsearchstyle", "hlss"],
"CSS specification of highlighted search items", "CSS specification of highlighted search items",
"string", "color: black; background-color: yellow; padding: 0; display: inline;"); "string", "color: black; background-color: yellow; padding: 0; display: inline;");
vimperator.options.add(["ignorecase", "ic"], vimperator.options.add(["ignorecase", "ic"],
"Ignore case in search patterns", "Ignore case in search patterns",
"boolean", true); "boolean", true);
vimperator.options.add(["incsearch", "is"], vimperator.options.add(["incsearch", "is"],
"Show where the search pattern matches as it is typed", "Show where the search pattern matches as it is typed",
"boolean", true); "boolean", true);
vimperator.options.add(["linksearch", "lks"], vimperator.options.add(["linksearch", "lks"],
"Limit the search to hyperlink text", "Limit the search to hyperlink text",
"boolean", false); "boolean", false);
vimperator.options.add(["smartcase", "scs"], vimperator.options.add(["smartcase", "scs"],
"Override the 'ignorecase' option if the pattern contains uppercase characters", "Override the 'ignorecase' option if the pattern contains uppercase characters",
"boolean", true); "boolean", true);