1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 03:14:11 +01:00

add some more autocmd messages

This commit is contained in:
Doug Kearns
2008-09-27 14:03:39 +00:00
parent f22640fac2
commit 1880c96374

View File

@@ -249,7 +249,12 @@ liberator.AutoCommands = function () //{{{
for (let i = 0; i < autoCommands[auEvent].length; i++)
{
if (autoCommands[auEvent][i][2].test(url))
{
liberator.echomsg("Executing " + auEvent + " Auto commands for \""
+ autoCommands[auEvent][i][2] + "\"", 8);
liberator.echomsg("autocommand " + autoCommands[auEvent][i][1], 9);
liberator.execute(autoCommands[auEvent][i][1]);
}
}
}
}