We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9fa2f1 commit 78b0d0aCopy full SHA for 78b0d0a
1 file changed
src/vs/workbench/browser/actions/listCommands.ts
@@ -560,7 +560,8 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
560
// List
561
if (focused instanceof List || focused instanceof PagedList) {
562
const list = focused;
563
- list.setSelection(range(list.length));
+ const fakeKeyboardEvent = new KeyboardEvent('keydown');
564
+ list.setSelection(range(list.length), fakeKeyboardEvent);
565
}
566
567
// Trees
0 commit comments