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

Add C_<C-t>.

This commit is contained in:
Kris Maglione
2011-08-16 21:38:22 -04:00
parent 1ad3fdf195
commit ee06a63dba
6 changed files with 45 additions and 19 deletions

View File

@@ -86,6 +86,7 @@
- Added 'timeout' and 'timeoutlen' options. [b6]
- Added n_{, n_}, n_[ and n_] mappings. [b7]
- Added n_g], n_[d and n_]d. [b8]
- Added <C-t> to open the next mapping in a new tab. [b8]
- Added <A-b> to execute a builtin mapping. [b6]
- Added <A-m>l and <A-m>s to aid in the construction of
macros. [b6]

View File

@@ -242,8 +242,8 @@ var Config = Module("config", ConfigBase, {
commands.add(["wind[ow]"],
"Execute a command and tell it to output in a new window",
function (args) {
dactyl.withSavedValues(["forceNewWindow"], function () {
this.forceNewWindow = true;
dactyl.withSavedValues(["forceTarget"], function () {
this.forceTarget = dactyl.NEW_WINDOW;
this.execute(args[0], null, true);
});
},