From 8c3b262f5073662237059dd00bc1bd2168a23836 Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Wed, 11 Jan 2023 08:53:22 +0100 Subject: [PATCH] Add ctrl n and p for list navigation --- keybindings.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/keybindings.json b/keybindings.json index e35def2..3fe50ab 100644 --- a/keybindings.json +++ b/keybindings.json @@ -100,6 +100,26 @@ "command": "workbench.action.quickOpenSelectPrevious", "when": "inQuickOpen" }, + { + "key": "ctrl+n", + "command": "selectNextSuggestion", + "when": "suggestWidgetVisible" + }, + { + "key": "ctrl+p", + "command": "selectPrevSuggestion", + "when": "suggestWidgetVisible" + }, + { + "key": "ctrl+n", + "command": "workbench.action.quickOpenSelectNext", + "when": "inQuickOpen" + }, + { + "key": "ctrl+p", + "command": "workbench.action.quickOpenSelectPrevious", + "when": "inQuickOpen" + }, // Editor { "key": "ctrl+q ctrl+q",