1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 10:14:13 +01:00

Fix n_<u>.

This commit is contained in:
Kris Maglione
2010-09-25 17:47:38 -04:00
parent ae6288106a
commit 9644388a72

View File

@@ -968,7 +968,7 @@ const Tabs = Module("tabs", {
if (dactyl.has("tabs_undo")) {
mappings.add([modes.NORMAL], ["u"],
"Undo closing of a tab",
function (count) { dactyl.execute(count + "undo"); },
function (count) { commands.get("undo").action({ count: count }); },
{ count: true });
}