1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-02 12:25:46 +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")) { if (dactyl.has("tabs_undo")) {
mappings.add([modes.NORMAL], ["u"], mappings.add([modes.NORMAL], ["u"],
"Undo closing of a tab", "Undo closing of a tab",
function (count) { dactyl.execute(count + "undo"); }, function (count) { commands.get("undo").action({ count: count }); },
{ count: true }); { count: true });
} }