1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:47:59 +01:00
This commit is contained in:
Kris Maglione
2011-03-08 04:24:00 -05:00
parent 7aa4f87300
commit 505d595ffe

View File

@@ -565,7 +565,7 @@ var Editor = Module("editor", {
addMovementMap(["W"], "Move right to just beyond the next white space",
true, "wordMove", true, move(true, /\S/), select(true, /\S/));
addMovementMap(["e"], "Move to the end of the current word",
true, "wordMove", false, move(true, /\W/), select(true, /\W/));
true, "wordMove", true, move(true, /\W/), select(true, /\W/));
addMovementMap(["E"], "Move right to the next white space",
true, "wordMove", true, move(true, /\s/), select(true, /\s/));
addMovementMap(["<C-f>", "<PageDown>"], "Move down one page",