1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 06:07:59 +01:00
This commit is contained in:
Kris Maglione
2011-02-19 04:35:50 -05:00
parent caaef0214b
commit 6fb8196344

View File

@@ -1466,15 +1466,15 @@ var CommandLine = Module("commandline", {
});
bind(["<A-Tab>", "<Tab>"], "Select the next matching completion item",
function ({ events, self }) {
function ({ keypressEvents, self }) {
dactyl.assert(self.completions);
self.completions.tabTimer.tell(events[0]);
self.completions.tabTimer.tell(keypressEvents[0]);
});
bind(["<A-S-Tab>", "<S-Tab>"], "Select the previous matching completion item",
function ({ events, self }) {
function ({ keypressEvents, self }) {
dactyl.assert(self.completions);
self.completions.tabTimer.tell(events[0]);
self.completions.tabTimer.tell(keypressEvents[0]);
});
bind(["<BS>", "<C-h>"], "Delete the previous character",