1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 11:47:58 +01:00

faster echo() method

This commit is contained in:
Martin Stubenschrott
2007-10-05 01:43:06 +00:00
parent a8bcbcf74b
commit 868a3f887e
2 changed files with 29 additions and 49 deletions

View File

@@ -732,7 +732,7 @@ const vimperator = (function() //{{{
vimperator.log("All modules loaded", 3);
vimperator.echo = function(str) { vimperator.commandline.echo(str); }
vimperator.echoerr = function(str) { vimperator.commandline.echoErr(str); }
vimperator.echoerr = function(str) { vimperator.commandline.echo(str, vimperator.commandline.HL_ERRORMSG); }
vimperator.globalVariables = {};