From 1880c9637483ba64404559c4cf84586b2ec731ab Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 27 Sep 2008 14:03:39 +0000 Subject: [PATCH] add some more autocmd messages --- content/events.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/events.js b/content/events.js index af5c6278..a8052884 100644 --- a/content/events.js +++ b/content/events.js @@ -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]); + } } } }