1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 06:08:02 +01:00

fixed macros. Also don't push echomsgs to the multiline for now

This commit is contained in:
Martin Stubenschrott
2008-12-16 23:00:41 +01:00
parent 4fbc88f975
commit 59ab76cead
3 changed files with 7 additions and 2 deletions

View File

@@ -562,7 +562,7 @@ function Events() //{{{
} }
// return true when load successful, or false otherwise // return true when load successful, or false otherwise
function waitForPageLoaded() events.waitForPageLoaded(); function waitForPageLoaded() events.waitForPageLoad();
// load all macros inside ~/.vimperator/macros/ // load all macros inside ~/.vimperator/macros/
// setTimeout needed since io. is loaded after events. // setTimeout needed since io. is loaded after events.

View File

@@ -734,7 +734,10 @@ const liberator = (function () //{{{
// TODO: add proper level constants // TODO: add proper level constants
echomsg: function (str, verbosity, flags) echomsg: function (str, verbosity, flags)
{ {
flags |= commandline.APPEND_TO_MESSAGES; //| commandline.FORCE_SINGLELINE; // TODO: was there a reason for this? --djk // TODO: is there a reason for this? --djk
// yes, it doesn't show the MOW on startup if you have e.g. some qmarks in your vimperatorrc.
// Feel free to add another flag like DONT_OPEN_MULTILINE if really needed --mst
flags |= commandline.APPEND_TO_MESSAGES | commandline.DISALLOW_MULTILINE;
if (verbosity == null) if (verbosity == null)
verbosity = 0; // verbosity level is exclusionary verbosity = 0; // verbosity level is exclusionary

View File

@@ -1,4 +1,6 @@
2008: 2008:
* John Baber
* Mark Orr
* George Lowell (biggest donor so far!) * George Lowell (biggest donor so far!)
* Keith Waclena * Keith Waclena
* Christopher Glazner * Christopher Glazner