Add missing "times" to Editor.navigateLeft|Right()

This commit is contained in:
Julian Viereck 2010-12-22 22:41:34 +01:00
commit 252b064d6a
2 changed files with 4 additions and 4 deletions

View file

@ -167,7 +167,7 @@ canon.addCommand({
});
canon.addCommand({
name: "gotoleft",
exec: function(env, args, request) { env.editor.navigateLeft(); }
exec: function(env, args, request) { env.editor.navigateLeft(args.times); }
});
canon.addCommand({
name: "selectwordright",
@ -191,7 +191,7 @@ canon.addCommand({
});
canon.addCommand({
name: "gotoright",
exec: function(env, args, request) { env.editor.navigateRight(); }
exec: function(env, args, request) { env.editor.navigateRight(args.times); }
});
canon.addCommand({
name: "selectpagedown",

View file

@ -890,7 +890,7 @@ var Editor =function(renderer, doc) {
this.moveCursorToPosition(selectionStart);
}
else {
times = times | 1;
times = times || 1;
while (times--) {
this.selection.moveCursorLeft();
}
@ -904,7 +904,7 @@ var Editor =function(renderer, doc) {
this.moveCursorToPosition(selectionEnd);
}
else {
times = times | 1;
times = times || 1;
while (times--) {
this.selection.moveCursorRight();
}