1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 04:22:26 +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

@@ -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);
});
},