From 505d595ffe2ab1a4bea580f040310deb5eb60492 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 8 Mar 2011 04:24:00 -0500 Subject: Fix c_e. --- common/content/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/content') diff --git a/common/content/editor.js b/common/content/editor.js index d1f639b9..e1df6537 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -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(["", ""], "Move down one page", -- cgit v1.2.3