1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 23:57:59 +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

@@ -734,7 +734,10 @@ const liberator = (function () //{{{
// TODO: add proper level constants
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)
verbosity = 0; // verbosity level is exclusionary