1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 23:07:58 +01:00

Implement (with an e) an experimental ‘ex’ namespace.

This commit is contained in:
Kris Maglione
2010-10-17 20:00:57 -04:00
parent a2f6b13a10
commit e6b6d80b10
3 changed files with 62 additions and 29 deletions

View File

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