Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Bug 418217] [Editor] Vi Mode - Fixed behavior for 'e'. --Signed-off-…
…by: Steve Jahns <s.t.jahns@gmail.com>
  • Loading branch information
stjahns committed Sep 27, 2013
1 parent 0f478cd commit c21a245
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -209,7 +209,10 @@ define("orion/editor/vi", [ //$NON-NLS-0$
}, this._msg("viB")); //$NON-NLS-0$

view.setAction("vi" + key + "e", function() { //$NON-NLS-1$ //$NON-NLS-0$
return self._invoke("wordNext", {unit: "wordend"}); //$NON-NLS-1$ //$NON-NLS-0$
self._invoke("charNext", {unit: "character"}); //$NON-NLS-1$ //$NON-NLS-0$
self._invoke("wordNext", {unit: "wordend"}); //$NON-NLS-1$ //$NON-NLS-0$
self._invoke("charPrevious", {unit: "character"}); //$NON-NLS-1$ //$NON-NLS-0$
return true;
}, this._msg("vie")); //$NON-NLS-0$

view.setAction("vi" + key + "E", function() { //$NON-NLS-1$ //$NON-NLS-0$
Expand Down

0 comments on commit c21a245

Please sign in to comment.