From 108986dde7bae419dfb898854355b3ce38abd380 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Fri, 15 Jul 2016 17:31:49 +0200 Subject: [PATCH] Update argument for lineColumnCenter --- vim-sample/src/mappings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim-sample/src/mappings.ts b/vim-sample/src/mappings.ts index 5b30e133..9789f1b1 100644 --- a/vim-sample/src/mappings.ts +++ b/vim-sample/src/mappings.ts @@ -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'});