mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-04 13:25:45 +01:00
add more CSS classes for highlighting output messages and use hl-Warning (red
on white) for find related wrap messages
This commit is contained in:
@@ -276,7 +276,7 @@ function Bookmarks() //{{{
|
||||
}
|
||||
list += "</table>";
|
||||
|
||||
vimperator.commandline.echo(list, true);
|
||||
vimperator.commandline.echo(list, vimperator.commandline.HL_NORMAL, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -499,7 +499,7 @@ function History() //{{{
|
||||
}
|
||||
list += "</table>";
|
||||
|
||||
vimperator.commandline.echo(list, true);
|
||||
vimperator.commandline.echo(list, vimperator.commandline.HL_NORMAL, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -755,7 +755,7 @@ function Marks() //{{{
|
||||
}
|
||||
list += "</table>";
|
||||
|
||||
vimperator.commandline.echo(list, true); // TODO: force of multiline widget a better way
|
||||
vimperator.commandline.echo(list, vimperator.commandline.HL_NORMAL, true); // TODO: force of multiline widget a better way
|
||||
}
|
||||
//}}}
|
||||
} //}}}
|
||||
@@ -846,7 +846,7 @@ function QuickMarks() //{{{
|
||||
}
|
||||
list += "</table>";
|
||||
|
||||
vimperator.commandline.echo(list, true); // TODO: force of multiline widget a better way
|
||||
vimperator.commandline.echo(list, vimperator.commandline.HL_NORMAL, true); // TODO: force of multiline widget a better way
|
||||
}
|
||||
|
||||
this.destroy = function()
|
||||
|
||||
Reference in New Issue
Block a user