Update argument for lineColumnCenter

This commit is contained in:
Sandeep Somavarapu
2016-07-15 17:31:49 +02:00
parent 987f881412
commit 108986dde7

View File

@ -31,7 +31,7 @@ function defineMotionCommand(char: string, commandId: string, args?: any): void
};
defineMotionCommand('g0', 'cursorMove', {to: 'lineStart'});
defineMotionCommand('g^', 'cursorMove', {to: 'lineFirstNonWhitespaceCharacter'});
defineMotionCommand('gm', 'cursorMove', {to: 'lineCenter'});
defineMotionCommand('gm', 'cursorMove', {to: 'lineColumnCenter'});
defineMotionCommand('g$', 'cursorMove', {to: 'lineEnd'});