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:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user