summaryrefslogtreecommitdiff
path: root/common/content
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-03-08 04:24:00 -0500
committerKris Maglione <maglione.k@gmail.com>2011-03-08 04:24:00 -0500
commit505d595ffe2ab1a4bea580f040310deb5eb60492 (patch)
tree1eb1c21371e929a1975e55f2179d3dc68cec9c0f /common/content
parent7aa4f87300b4ee6021a08b71147f67b2d5641688 (diff)
downloadpentadactyl-505d595ffe2ab1a4bea580f040310deb5eb60492.tar.gz
Fix c_e.
Diffstat (limited to 'common/content')
-rw-r--r--common/content/editor.js2
1 files changed, 1 insertions, 1 deletions
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(["<C-f>", "<PageDown>"], "Move down one page",