From 1d9ad3a990ac24440406780774dda0425aa12c41 Mon Sep 17 00:00:00 2001 From: xconverge Date: Sun, 24 Jun 2018 15:01:43 -0700 Subject: [PATCH] fixes #1980 --- src/actions/commands/insert.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/actions/commands/insert.ts b/src/actions/commands/insert.ts index 114c93162ea..5b7e2ed7a11 100644 --- a/src/actions/commands/insert.ts +++ b/src/actions/commands/insert.ts @@ -475,9 +475,9 @@ class CommandCtrlUInInsertMode extends BaseCommand { } @RegisterAction -class CommandCtrlN extends BaseCommand { +class CommandNavigateAutocompleteDown extends BaseCommand { modes = [ModeName.Insert]; - keys = ['']; + keys = [[''], ['']]; public async exec(position: Position, vimState: VimState): Promise { await vscode.commands.executeCommand('selectNextSuggestion'); @@ -487,9 +487,9 @@ class CommandCtrlN extends BaseCommand { } @RegisterAction -class CommandCtrlP extends BaseCommand { +class CommandNavigateAutocompleteUp extends BaseCommand { modes = [ModeName.Insert]; - keys = ['']; + keys = [[''], ['']]; public async exec(position: Position, vimState: VimState): Promise { await vscode.commands.executeCommand('selectPrevSuggestion');