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

hmm, forgot what I changed :)

This commit is contained in:
Martin Stubenschrott
2007-04-20 03:01:17 +00:00
parent f52cca72ff
commit 48b9f413cd
6 changed files with 35 additions and 10 deletions

View File

@@ -173,6 +173,17 @@ var g_settings = [/*{{{*/
true,
null,
null
],
[
["previewheight", "pvh"],
"Default height for preview window",
"Value must be between 1 and 50. If the value is too high, completions may cover the command-line. Close the preview window with <code class=command>:pclose</close>.",
function(value) { set_pref("previewheight", value); },
function() { return get_pref("previewheight"); },
"number",
10,
function (value) { if (value>=1 && value <=50) return true; else return false; },
null
],
[
["showmode", "smd"],