Skip to content

Commit 2be5713

Browse files
authored
Merge pull request microsoft#182031 from microsoft/ulugbekna/nav-in-explorer
fix: letter-based navigation in file explorer
2 parents 2006da9 + 7c15882 commit 2be5713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/list/browser/listService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ function createKeyboardNavigationEventFilter(keybindingService: IKeybindingServi
816816
}
817817

818818
inMultiChord = false;
819-
return !result;
819+
return result === null || result.kind === ResultKind.NoMatchingKb;
820820
};
821821
}
822822

0 commit comments

Comments
 (0)