mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-11 06:35:46 +01:00
Fix trying to process counts in FIND mode. Closes issue #280.
This commit is contained in:
@@ -164,17 +164,20 @@ var RangeFinder = Module("rangefinder", {
|
|||||||
const { modes } = modules;
|
const { modes } = modules;
|
||||||
modes.addMode("FIND", {
|
modes.addMode("FIND", {
|
||||||
extended: true,
|
extended: true,
|
||||||
description: "Find mode, active when typing search input"
|
description: "Find mode, active when typing search input",
|
||||||
|
input: true
|
||||||
});
|
});
|
||||||
modes.addMode("FIND_FORWARD", {
|
modes.addMode("FIND_FORWARD", {
|
||||||
extended: true,
|
extended: true,
|
||||||
description: "Forward Find mode, active when typing search input",
|
description: "Forward Find mode, active when typing search input",
|
||||||
bases: [modes.FIND]
|
bases: [modes.FIND],
|
||||||
|
input: true
|
||||||
}, { history: "search" });
|
}, { history: "search" });
|
||||||
modes.addMode("FIND_BACKWARD", {
|
modes.addMode("FIND_BACKWARD", {
|
||||||
extended: true,
|
extended: true,
|
||||||
description: "Backward Find mode, active when typing search input",
|
description: "Backward Find mode, active when typing search input",
|
||||||
bases: [modes.FIND]
|
bases: [modes.FIND],
|
||||||
|
input: true
|
||||||
}, { history: "search" });
|
}, { history: "search" });
|
||||||
},
|
},
|
||||||
commandline: function (dactyl, modules, window) {
|
commandline: function (dactyl, modules, window) {
|
||||||
|
|||||||
Reference in New Issue
Block a user