mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 04:07:59 +01:00
fixed macros. Also don't push echomsgs to the multiline for now
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user