Skip to content

Commit

Permalink
Fix issue with escaping suggest widget
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Jan 22, 2019
1 parent 1a76593 commit 99d2749
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions settings/Library/Application Support/Code/User/keybindings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]

0 comments on commit 99d2749

Please sign in to comment.