1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-30 04:55:47 +01:00

prepend commandline to MOW output of :autocmd

This commit is contained in:
Doug Kearns
2008-09-10 23:44:07 +00:00
parent 40ccef6cca
commit 716ee80452

View File

@@ -192,7 +192,9 @@ liberator.AutoCommands = function () //{{{
list: function (auEvent, regex) // arguments are filters (NULL = all)
{
var flag;
var list = "<table><tr><td class=\"hl-Title\" colspan=\"2\">---- Auto-Commands ----</td></tr>";
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr><td class=\"hl-Title\" colspan=\"2\">---- Auto-Commands ----</td></tr>";
for (var item in autoCommands)
{
flag = true;