From b204ef96f1f38713066f51e7d3c982b794021626 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 13 Nov 2007 05:45:44 +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 de441c41..5ee4ab1b 100644 --- a/content/options.js +++ b/content/options.js @@ -761,7 +761,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); } } )); //}}}