1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 14:24:18 +01:00

Fix multi-value :set charlist completion. Closes issue #347.

This commit is contained in:
Kris Maglione
2011-02-03 05:25:17 -05:00
parent 11a6a7a31b
commit f84396f5e6

View File

@@ -1246,6 +1246,9 @@ var Options = Module("options", {
// Fallthrough
case "stringlist":
break;
case "charlist":
Option._splitAt = newValues.length;
break;
case "stringmap":
case "regexpmap":
let vals = Option.splitList(context.filter);