1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-29 06:05:46 +01:00

Add file input editing history.

This commit is contained in:
Kris Maglione
2011-01-15 19:17:24 -05:00
parent eacd52dffb
commit 7d178cfb34
6 changed files with 58 additions and 30 deletions

View File

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