1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 15:18:00 +01:00
This commit is contained in:
Kris Maglione
2010-09-27 14:32:15 -04:00
parent e539e0b7ed
commit 89a904f1a2

View File

@@ -1619,8 +1619,8 @@ const CommandLine = Module("commandline", {
mappings.add([modes.NORMAL], mappings.add([modes.NORMAL],
["g<"], "Redisplay the last command output", ["g<"], "Redisplay the last command output",
function () { function () {
dactyl.assert(this._lastMowOutput); dactyl.assert(commandline._lastMowOutput, "No previous command output");
this._echoMultiline(this._lastMowOutput, commandline.HL_NORMAL); commandline._echoMultiline(commandline._lastMowOutput, commandline.HL_NORMAL);
}); });
}, },
options: function () { options: function () {