// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+n", "command": "cursorDown",
"when": "editorTextFocus" },
{ "key": "ctrl+n", "command": "showNextParameterHint",
"when": "editorTextFocus && parameterHintsVisible" },
{ "key": "ctrl+n", "command": "selectNextQuickFix",
"when": "editorFocus && quickFixWidgetVisible" },
{ "key": "ctrl+n", "command": "selectNextSuggestion",
"when": "editorTextFocus && suggestWidgetVisible" },
{ "key": "ctrl+p", "command": "cursorUp",
"when": "editorTextFocus" },
{ "key": "ctrl+p", "command": "showPrevParameterHint",
"when": "editorTextFocus && parameterHintsVisible" },
{ "key": "ctrl+p", "command": "selectPrevQuickFix",
"when": "editorFocus && quickFixWidgetVisible" },
{ "key": "ctrl+p", "command": "selectPrevSuggestion",
"when": "editorTextFocus && suggestWidgetVisible" }
{ "key": "ctrl+n", "command": "workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen" },
{ "key": "ctrl+p", "command": "workbench.action.quickOpenNavigatePrevious",
"when": "inQuickOpen" }
]