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

Fix trying to process counts in FIND mode. Closes issue #280.

This commit is contained in:
Kris Maglione
2011-01-20 05:45:26 -05:00
parent 8ab964fedb
commit 40ece9b1d6

View File

@@ -164,17 +164,20 @@ var RangeFinder = Module("rangefinder", {
const { modes } = modules;
modes.addMode("FIND", {
extended: true,
description: "Find mode, active when typing search input"
description: "Find mode, active when typing search input",
input: true
});
modes.addMode("FIND_FORWARD", {
extended: true,
description: "Forward Find mode, active when typing search input",
bases: [modes.FIND]
bases: [modes.FIND],
input: true
}, { history: "search" });
modes.addMode("FIND_BACKWARD", {
extended: true,
description: "Backward Find mode, active when typing search input",
bases: [modes.FIND]
bases: [modes.FIND],
input: true
}, { history: "search" });
},
commandline: function (dactyl, modules, window) {