From 89d57a91061d97d26ce4b3d47427c597af1aa9c2 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 20 Jan 2011 21:17:44 +1100 Subject: [PATCH] Fix v_v and v_V. --- 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 c27b8b9e..ffbe217c 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -662,7 +662,7 @@ var Editor = Module("editor", { mappings.add([modes.VISUAL], ["v", "V"], "End visual mode", - function () { events.onEscape(); }); // XXX + function () { modes.pop(); }); mappings.add([modes.TEXT_EDIT], ["V"], "Start visual line mode",