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

fix 'eventignore' completion

This commit is contained in:
Doug Kearns
2008-11-09 14:42:01 +00:00
parent d7cfc4b0f5
commit 05005ce482

View File

@@ -48,7 +48,7 @@ function AutoCommands() //{{{
"List of autocommand event names which should be ignored", "List of autocommand event names which should be ignored",
"stringlist", "", "stringlist", "",
{ {
completer: function (value) Array(config.autocommands).push(["all", "All events"]), completer: function (value) config.autocommands.concat([["all", "All events"]]),
validator: function (value) validator: function (value)
{ {
let values = value.split(","); let values = value.split(",");