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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user