1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 23:58:00 +01:00

add initial implementation of the 'history' option - no dynamic resizing yet

This commit is contained in:
Doug Kearns
2007-11-30 09:22:43 +00:00
parent 48884809a2
commit 19ad0f4d46
2 changed files with 14 additions and 6 deletions

View File

@@ -525,6 +525,12 @@ vimperator.Options = function () //{{{
defaultValue: DEFAULT_HINTTAGS
}
));
optionManager.add(new vimperator.Option(["history", "hi"], "number",
{
shortHelp: "Number of Ex commands and search patterns to store in the commandline history",
defaultValue: 500
}
));
optionManager.add(new vimperator.Option(["hlsearch", "hls"], "boolean",
{
shortHelp: "Highlight previous search pattern matches",