mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 06:07:59 +01:00
Fix bug.
This commit is contained in:
@@ -1466,15 +1466,15 @@ var CommandLine = Module("commandline", {
|
|||||||
});
|
});
|
||||||
|
|
||||||
bind(["<A-Tab>", "<Tab>"], "Select the next matching completion item",
|
bind(["<A-Tab>", "<Tab>"], "Select the next matching completion item",
|
||||||
function ({ events, self }) {
|
function ({ keypressEvents, self }) {
|
||||||
dactyl.assert(self.completions);
|
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",
|
bind(["<A-S-Tab>", "<S-Tab>"], "Select the previous matching completion item",
|
||||||
function ({ events, self }) {
|
function ({ keypressEvents, self }) {
|
||||||
dactyl.assert(self.completions);
|
dactyl.assert(self.completions);
|
||||||
self.completions.tabTimer.tell(events[0]);
|
self.completions.tabTimer.tell(keypressEvents[0]);
|
||||||
});
|
});
|
||||||
|
|
||||||
bind(["<BS>", "<C-h>"], "Delete the previous character",
|
bind(["<BS>", "<C-h>"], "Delete the previous character",
|
||||||
|
|||||||
Reference in New Issue
Block a user