diff --git a/settings/Library/Application Support/Code/User/keybindings.json b/settings/Library/Application Support/Code/User/keybindings.json index ed97920..1c0eeb3 100644 --- a/settings/Library/Application Support/Code/User/keybindings.json +++ b/settings/Library/Application Support/Code/User/keybindings.json @@ -156,14 +156,14 @@ "command": "-editor.action.insertCursorBelow", "when": "editorTextFocus" }, - { - "key": "down", - "command": "cursorDown", - "when": "textInputFocus" - }, { "key": "up", "command": "cursorUp", - "when": "textInputFocus" + "when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode == 'Insert' && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible" + }, + { + "key": "down", + "command": "cursorDown", + "when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode == 'Insert' && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible" } ]