Skip to content

Commit 00cbd68

Browse files
authored
Fix tab keybinding from blocking Find menu tab-navigation (#8505)
Fixes #7000
1 parent 1fc416d commit 00cbd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@
112112
{
113113
"key": "tab",
114114
"command": "extension.vim_tab",
115-
"when": "editorFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
115+
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
116116
},
117117
{
118118
"key": "shift+tab",
119119
"command": "extension.vim_shift+tab",
120-
"when": "editorFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
120+
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
121121
},
122122
{
123123
"key": "left",

0 commit comments

Comments
 (0)