1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-01 03:55:46 +01:00

Fix :time :stuff, etc.

This commit is contained in:
Kris Maglione
2008-12-07 10:48:03 -05:00
parent 419c7ca662
commit 7693ac5000
9 changed files with 32 additions and 37 deletions

View File

@@ -159,7 +159,7 @@ const modes = (function () //{{{
if (!options["showmode"])
return;
commandline.echo(getModeMessage(), "ModeMsg");
commandline.echo(getModeMessage(), "ModeMsg", commandline.DISALLOW_MULTILINE);
},
// add/remove always work on the extended mode only
@@ -226,8 +226,11 @@ const modes = (function () //{{{
remove: function (mode)
{
extended &= ~mode;
this.show();
if (extended & mode)
{
extended &= ~mode;
this.show();
}
},
get passNextKey() passNextKey,