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

allow :set wildoptions=

This commit is contained in:
Martin Stubenschrott
2007-11-12 11:51:25 +00:00
parent f46ff53a52
commit 01f70ad336

View File

@@ -765,7 +765,7 @@ vimperator.Options = function () //{{{
"<tr><td><b>sort</b></td><td>Always sorts completion list, overriding the <code class=\"option\">'complete'</code> option.</td></tr>" +
"</table>",
default_value: "",
validator: function (value) { return /^sort$/.test(value); }
validator: function (value) { return /^(sort|)$/.test(value); }
}
));
//}}}