From 22ea6a845258ec0cd4c6af756a39ae4d3cc004ee Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 28 Sep 2011 21:19:30 -0400 Subject: [PATCH] Less sucky t_w. --- common/content/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/editor.js b/common/content/editor.js index 3875e450..ecaf7189 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -521,7 +521,7 @@ var Editor = Module("editor", { addMovementMap(["b", ""], "Move left one word", true, "wordMove", false, "cmd_wordPrevious", "cmd_selectWordPrevious"); addMovementMap(["w", ""], "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", true, "wordMove", false, move(false, /\S/), select(false, /\S/)); addMovementMap(["W"], "Move right to just beyond the next white space",