From 01f70ad336cbe522eb7212a7754c5898ead947ea Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Mon, 12 Nov 2007 11:51:25 +0000 Subject: [PATCH] allow :set wildoptions= --- content/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/options.js b/content/options.js index 7e46aaa4..fc47e435 100644 --- a/content/options.js +++ b/content/options.js @@ -765,7 +765,7 @@ vimperator.Options = function () //{{{ "sortAlways sorts completion list, overriding the 'complete' option." + "", default_value: "", - validator: function (value) { return /^sort$/.test(value); } + validator: function (value) { return /^(sort|)$/.test(value); } } )); //}}}