1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 00:27:57 +01:00

Less sucky t_w.

This commit is contained in:
Kris Maglione
2011-09-28 21:19:30 -04:00
parent 1104d4a186
commit 22ea6a8452

View File

@@ -521,7 +521,7 @@ var Editor = Module("editor", {
addMovementMap(["b", "<C-Left>"], "Move left one word", addMovementMap(["b", "<C-Left>"], "Move left one word",
true, "wordMove", false, "cmd_wordPrevious", "cmd_selectWordPrevious"); true, "wordMove", false, "cmd_wordPrevious", "cmd_selectWordPrevious");
addMovementMap(["w", "<C-Right>"], "Move right one word", addMovementMap(["w", "<C-Right>"], "Move right one word",
true, "wordMove", true, "cmd_wordNext", "cmd_selectWordNext"); true, "wordMove", true, move(true, /\w/), select(true, /\w/));
addMovementMap(["B"], "Move left to the previous white space", addMovementMap(["B"], "Move left to the previous white space",
true, "wordMove", false, move(false, /\S/), select(false, /\S/)); true, "wordMove", false, move(false, /\S/), select(false, /\S/));
addMovementMap(["W"], "Move right to just beyond the next white space", addMovementMap(["W"], "Move right to just beyond the next white space",