mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Update argument for lineColumnCenter
This commit is contained in:
@ -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'});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user