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

Fixing tab completion for :set! values

This commit is contained in:
Daniel Bainton
2008-01-11 15:30:58 +00:00
parent 28910829cb
commit fa9e91a232

View File

@@ -383,7 +383,7 @@ vimperator.Completion = function () //{{{
var name = prefArray[i];
if (name.match("^" + filter.substr(0, filter.length - 1) + "$" ))
{
var value = vimperator.options.getFirefoxPref(name);
var value = vimperator.options.getFirefoxPref(name) + "";
return [filter.length + 1, [[value, ""]]];
}
}