mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 17:57:58 +01:00
Fix g<.
This commit is contained in:
@@ -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 () {
|
||||||
|
|||||||
Reference in New Issue
Block a user