mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 20:27:57 +01:00
Less sucky t_w.
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user