Skip to content

Commit

Permalink
Fix tab keybinding from blocking Find menu tab-navigation (#8505)
Browse files Browse the repository at this point in the history
Fixes #7000
  • Loading branch information
devrelm authored Aug 29, 2023
1 parent 1fc416d commit 00cbd68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@
{
"key": "tab",
"command": "extension.vim_tab",
"when": "editorFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "shift+tab",
"command": "extension.vim_shift+tab",
"when": "editorFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "left",
Expand Down

0 comments on commit 00cbd68

Please sign in to comment.